Home
last modified time | relevance | path

Searched refs:executeLongFastbootCommand (Results 1 – 12 of 12) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DGsiDeviceFlashPreparerTest.java142 when(mMockDevice.executeLongFastbootCommand("getvar", "current-slot")) in doGetSlotExpectation()
152 when(mMockDevice.executeLongFastbootCommand("getvar", "current-slot")) in doGetEmptySlotExpectation()
196 when(mMockDevice.executeLongFastbootCommand("delete-logical-partition", "product_a")) in testSetUp_Success_NoVbmetaImage()
198 when(mMockDevice.executeLongFastbootCommand("-w")).thenReturn(mSuccessResult); in testSetUp_Success_NoVbmetaImage()
199 when(mMockDevice.executeLongFastbootCommand("erase", "system_a")) in testSetUp_Success_NoVbmetaImage()
201 when(mMockDevice.executeLongFastbootCommand( in testSetUp_Success_NoVbmetaImage()
230 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success()
238 when(mMockDevice.executeLongFastbootCommand("delete-logical-partition", "product_a")) in testSetup_Success()
240 when(mMockDevice.executeLongFastbootCommand("-w")).thenReturn(mSuccessResult); in testSetup_Success()
241 when(mMockDevice.executeLongFastbootCommand("erase", "system_a")) in testSetup_Success()
[all …]
DGkiDeviceFlashPreparerTest.java391 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success()
420 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_with_flash_options()
452 when(mMockDevice.executeLongFastbootCommand("-w")).thenReturn(mSuccessResult); in testSetup_Success_with_device_wipe()
453 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_with_device_wipe()
484 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_with_additional_fastboot_commands()
487 when(mMockDevice.executeLongFastbootCommand("erase misc")).thenReturn(mSuccessResult); in testSetup_Success_with_additional_fastboot_commands()
488 when(mMockDevice.executeLongFastbootCommand("erase devinfo")).thenReturn(mSuccessResult); in testSetup_Success_with_additional_fastboot_commands()
518 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_with_disable_verity()
563 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success()
566 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success()
[all …]
DFastbootDeviceFlasherTest.java607 when(mMockDevice.executeLongFastbootCommand( in testCheckAndFlashSystem_flashing()
652 .executeLongFastbootCommand(Mockito.anyMap(), Mockito.anyString()); in testCheckAndFlashSystemWithFlashall()
688 when(mMockDevice.executeLongFastbootCommand( in testFlashingSystemWithRamdisk()
695 when(mMockDevice.executeLongFastbootCommand( in testFlashingSystemWithRamdisk()
736 when(mMockDevice.executeLongFastbootCommand( in testSkipFlashingSystemWithRamdisk()
770 when(mMockDevice.executeLongFastbootCommand( in testCheckAndFlashSystem_withFlashOptions()
803 when(mMockDevice.executeLongFastbootCommand( in testCheckAndFlashSystem_exception()
904 when(mockDevice.executeLongFastbootCommand( in setFastbootFlashExpectations()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DDeviceWiper.java79 CommandResult r = device.executeLongFastbootCommand("-w"); in doFormat()
103 CommandResult r = device.executeLongFastbootCommand(op, partition); in performFastbootOp()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DGsiDeviceFlashPreparer.java231 device.executeLongFastbootCommand( in flashGsi()
385 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeFastbootCmd()
DDeviceCleaner.java105 device.executeLongFastbootCommand("-w"); in clean()
DGkiDeviceFlashPreparer.java957 device.executeLongFastbootCommand( in executeFastbootCmd()
DFastbootDeviceFlasher.java1114 CommandResult result = device.executeLongFastbootCommand(envVarMap, cmdArgs); in executeLongFastbootCmd()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java540 public CommandResult executeLongFastbootCommand(String... commandArgs) in executeLongFastbootCommand() method
555 public CommandResult executeLongFastbootCommand( in executeLongFastbootCommand() method
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/sync/
DIncrementalImageFuncTest.java223 .executeLongFastbootCommand( in testBlockCompareUpdate()
386 .executeLongFastbootCommand( in revertToPreviousBuild()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java2474 public CommandResult executeLongFastbootCommand(String... cmdArgs) in executeLongFastbootCommand() method in NativeDevice
2476 return executeLongFastbootCommand(new HashMap<>(), cmdArgs); in executeLongFastbootCommand()
2481 public CommandResult executeLongFastbootCommand( in executeLongFastbootCommand() method in NativeDevice
2575 return executeLongFastbootCommand("erase", partition); in fastbootWipePartition()
2577 return executeLongFastbootCommand("format", partition); in fastbootWipePartition()
/tools/tradefederation/core/src/com/android/tradefed/util/image/
DIncrementalImageUtil.java774 mDevice.executeLongFastbootCommand( in flashStaticPartition()