Home
last modified time | relevance | path

Searched refs:executeFastbootCommand (Results 1 – 14 of 14) sorted by relevance

/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DFastbootCommandPreparer.java75 final CommandResult result = device.executeFastbootCommand(cmd.split("\\s+")); in setUp()
97 device.executeFastbootCommand(cmd.split("\\s+")); in tearDown()
DDeviceWiper.java86 device.executeFastbootCommand("reboot"); in doFormat()
96 device.executeFastbootCommand("reboot"); in doErase()
DCdmaDeviceFlasher.java179 device.executeFastbootCommand("reboot"); in flashSystem()
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DFastbootDeviceFlasherTest.java135 .executeFastbootCommand((String) Mockito.any(), (String) Mockito.any()); in testFlash_deviceNotAvailable()
169 when(mMockDevice.executeFastbootCommand("getvar", "version-bootloader")) in testGetImageVersion()
186 when(mMockDevice.executeFastbootCommand("getvar", "current-slot")) in testGetCurrentSlot_fastboot()
234 when(mMockDevice.executeFastbootCommand("getvar", "version-baseband")) in testRetryGetVersionCommand()
333 when(mMockDevice.executeFastbootCommand("getvar", "partition-type:cache")) in testWipeCache_exists()
383 when(mMockDevice.executeFastbootCommand("getvar", "partition-type:cache")) in testWipeCache_not_exists()
406 when(mMockDevice.executeFastbootCommand("getvar", "partition-type:cache")) in testWipeCache_not_exists_error()
423 when(mMockDevice.executeFastbootCommand(Mockito.anyLong(), Mockito.eq("-w"))) in doTestFlashWithWipe()
560 when(mMockDevice.executeFastbootCommand( in testCheckAndFlashBootloader()
888 when(mockDevice.executeFastbootCommand((String) Mockito.any(), (String) Mockito.any())) in setFastbootResponseExpectations()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceCleaner.java106 device.executeFastbootCommand("reboot"); in clean()
DFastbootDeviceFlasher.java259 CommandResult result = device.executeFastbootCommand(mWipeTimeout, "-w"); in handleUserDataFlashing()
308 CommandResult result = device.executeFastbootCommand("getvar", partitionType); in hasPartition()
1029 CommandResult result = device.executeFastbootCommand(cmdArgs); in executeFastbootCmd()
DDeviceFlashPreparer.java378 device.executeFastbootCommand( in setUp()
DDeviceSetup.java1001 device.executeFastbootCommand("oem", "ramdump", "disable"); in changeSystemProps()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java505 public CommandResult executeFastbootCommand(String... commandArgs) in executeFastbootCommand() method
519 public CommandResult executeFastbootCommand(long timeout, String... commandArgs) in executeFastbootCommand() method
/tools/tradefederation/core/src/com/android/tradefed/util/image/
DIncrementalImageUtil.java585 mDevice.executeFastbootCommand( in attemptBootloaderAndRadioFlashing()
599 mDevice.executeFastbootCommand( in attemptBootloaderAndRadioFlashing()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceFuncTest.java560 mTestDevice.executeFastbootCommand("getvar", "product").getStatus()); in testExecuteFastbootCommand_deviceInAdb()
594 mTestDevice.executeFastbootCommand("badcommand").getStatus()); in testExecuteFastbootCommand_badCommand()
DNativeDeviceTest.java1528 public CommandResult executeFastbootCommand(String... cmdArgs) in testDoReboot_fastboot()
1600 public CommandResult executeFastbootCommand(String... cmdArgs) in testRebootIntoBootloader_forceFastboot()
1666 public CommandResult executeFastbootCommand(String... cmdArgs) in testRebootIntoFastbootd_forceFastboot()
DTestDeviceTest.java1204 mNoFastbootTestDevice.executeFastbootCommand(""); in testExecuteFastbootCommand_nofastboot()
1218 mNoFastbootTestDevice.executeFastbootCommand(""); in testExecuteLongFastbootCommand_nofastboot()
1251 mTestDevice.executeFastbootCommand("foo"); in testExecuteFastbootCommand_state()
1290 mTestDevice.executeFastbootCommand("foo"); in testExecuteFastbootCommand_recovery()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java902 CommandResult result = executeFastbootCommand("getvar", variableName); in getFastbootVariable()
2410 public CommandResult executeFastbootCommand(String... cmdArgs) in executeFastbootCommand() method in NativeDevice
2420 public CommandResult executeFastbootCommand(long timeout, String... cmdArgs) in executeFastbootCommand() method in NativeDevice
3616 executeFastbootCommand(String.format("reboot-%s", mode)); in rebootIntoFastbootInternal()
3931 executeFastbootCommand("reboot"); in doReboot()
4414 CommandResult res = executeFastbootCommand("--version"); in getFastbootVersion()