Searched refs:executeLongFastbootCommand (Results 1 – 12 of 12) sorted by relevance
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/ |
D | GsiDeviceFlashPreparerTest.java | 142 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 …]
|
D | GkiDeviceFlashPreparerTest.java | 379 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success() 382 when(mMockDevice.executeLongFastbootCommand("-w")).thenReturn(mSuccessResult); in testSetup_Success() 421 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success() 424 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success() 429 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success() 434 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success() 439 when(mMockDevice.executeLongFastbootCommand( in testSetup_vendor_img_Success() 442 when(mMockDevice.executeLongFastbootCommand("-w")).thenReturn(mSuccessResult); in testSetup_vendor_img_Success() 479 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_FromZip() 482 when(mMockDevice.executeLongFastbootCommand( in testSetup_Success_FromZip() [all …]
|
D | FastbootDeviceFlasherTest.java | 607 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/ |
D | DeviceWiper.java | 79 CommandResult r = device.executeLongFastbootCommand("-w"); in doFormat() 103 CommandResult r = device.executeLongFastbootCommand(op, partition); in performFastbootOp()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | DeviceCleaner.java | 105 device.executeLongFastbootCommand("-w"); in clean()
|
D | GsiDeviceFlashPreparer.java | 224 device.executeLongFastbootCommand( in flashGsi() 365 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeFastbootCmd()
|
D | GkiDeviceFlashPreparer.java | 838 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeFastbootCmd()
|
D | FastbootDeviceFlasher.java | 1071 CommandResult result = device.executeLongFastbootCommand(envVarMap, cmdArgs); in executeLongFastbootCmd()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | INativeDevice.java | 532 public CommandResult executeLongFastbootCommand(String... commandArgs) in executeLongFastbootCommand() method 547 public CommandResult executeLongFastbootCommand( in executeLongFastbootCommand() method
|
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/sync/ |
D | IncrementalImageFuncTest.java | 224 .executeLongFastbootCommand( in testBlockCompareUpdate() 387 .executeLongFastbootCommand( in revertToPreviousBuild()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 2429 public CommandResult executeLongFastbootCommand(String... cmdArgs) in executeLongFastbootCommand() method in NativeDevice 2431 return executeLongFastbootCommand(new HashMap<>(), cmdArgs); in executeLongFastbootCommand() 2436 public CommandResult executeLongFastbootCommand( in executeLongFastbootCommand() method in NativeDevice 2530 return executeLongFastbootCommand("erase", partition); in fastbootWipePartition() 2532 return executeLongFastbootCommand("format", partition); in fastbootWipePartition()
|
/tools/tradefederation/core/src/com/android/tradefed/util/image/ |
D | IncrementalImageUtil.java | 638 mDevice.executeLongFastbootCommand( in flashStaticPartition()
|