Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DGsiDeviceFlashPreparerTest.java136 EasyMock.expect(mMockDevice.executeLongFastbootCommand("getvar", "current-slot")) in doGetSlotExpectation()
146 EasyMock.expect(mMockDevice.executeLongFastbootCommand("getvar", "current-slot")) in doGetEmptySlotExpectation()
214 mMockDevice.executeLongFastbootCommand( in testSetup_Success()
223 mMockDevice.executeLongFastbootCommand( in testSetup_Success()
226 EasyMock.expect(mMockDevice.executeLongFastbootCommand("erase", "system_a")) in testSetup_Success()
229 mMockDevice.executeLongFastbootCommand( in testSetup_Success()
234 EasyMock.expect(mMockDevice.executeLongFastbootCommand("-w")).andReturn(mSuccessResult); in testSetup_Success()
259 mMockDevice.executeLongFastbootCommand( in testSetup_Success_FromZipFile()
268 mMockDevice.executeLongFastbootCommand( in testSetup_Success_FromZipFile()
271 EasyMock.expect(mMockDevice.executeLongFastbootCommand("erase", "system_a")) in testSetup_Success_FromZipFile()
[all …]
DFastbootDeviceFlasherTest.java585 EasyMock.expect(mMockDevice.executeLongFastbootCommand(EasyMock.eq("update"), in testCheckAndFlashSystem_flashing()
617 mMockDevice.executeLongFastbootCommand( in testFlashingSystemWithRamdisk()
623 mMockDevice.executeLongFastbootCommand( in testFlashingSystemWithRamdisk()
664 mMockDevice.executeLongFastbootCommand( in testSkipFlashingSystemWithRamdisk()
698 mMockDevice.executeLongFastbootCommand( in testCheckAndFlashSystem_withFlashOptions()
731 mMockDevice.executeLongFastbootCommand( in testCheckAndFlashSystem_exception()
780 mockDevice.executeLongFastbootCommand(EasyMock.eq("flash"), EasyMock.eq(image), in setFastbootFlashExpectations()
DGkiDeviceFlashPreparerTest.java285 mMockDevice.executeLongFastbootCommand( in testSetup_Success()
311 mMockDevice.executeLongFastbootCommand( in testSetup_Success_FromZip()
338 mMockDevice.executeLongFastbootCommand( in testSetUp_GkiFlashFailure()
368 mMockDevice.executeLongFastbootCommand( in testSetUp_BootFailure()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DDeviceWiper.java53 CommandResult r = device.executeLongFastbootCommand("-w"); in doFormat()
68 CommandResult r = device.executeLongFastbootCommand(op, partition); in performFastbootOp()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java1902 public CommandResult executeLongFastbootCommand(String... cmdArgs) in executeLongFastbootCommand() method in NativeDevice
1975 return executeLongFastbootCommand("erase", partition); in fastbootWipePartition()
1977 return executeLongFastbootCommand("format", partition); in fastbootWipePartition()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceCleaner.java107 device.executeLongFastbootCommand("-w"); in clean()
DGkiDeviceFlashPreparer.java339 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeFastbootCmd()
DGsiDeviceFlashPreparer.java333 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeFastbootCmd()
DFastbootDeviceFlasher.java800 CommandResult result = device.executeLongFastbootCommand(cmdArgs); in executeLongFastbootCmd()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java483 public CommandResult executeLongFastbootCommand(String... commandArgs) in executeLongFastbootCommand() method