/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/ |
D | FastbootCommandPreparerTest.java | 71 when(mMockDevice.executeFastbootCommand(any())).thenReturn(fastbootResult); in setUp() 88 when(mMockDevice.executeFastbootCommand( in testSetUp_extraFile() 98 verify(mMockDevice).executeFastbootCommand( in testSetUp_extraFile() 119 when(mMockDevice.executeFastbootCommand( in testTearDown_extraFile() 129 verify(mMockDevice).executeFastbootCommand( in testTearDown_extraFile() 145 verify(mMockDevice).executeFastbootCommand(eq("command")); in testSetUp_fastbootdMode() 158 verify(mMockDevice).executeFastbootCommand(eq("command")); in testTearDown_fastbootMode() 192 when(mMockDevice.executeFastbootCommand(any())).thenReturn(fastbootResult); in testSetUp_withErrors()
|
D | FastbootDeviceFlasherTest.java | 135 .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()
|
/aosp_15_r20/test/catbox/target_preparers/src/com/android/catbox/targetpreparer/ |
H A D | LowPerformanceTargetPreparer.java | 83 executeFastbootCommand(device, in setUp() 85 executeFastbootCommand(device, in setUp() 104 executeFastbootCommand(device, String.format("oem mem %s", mInitialDeviceInfo.mMem)); in tearDown() 105 executeFastbootCommand(device, in tearDown() 120 private CommandResult executeFastbootCommand(ITestDevice device, String command) in executeFastbootCommand() method in LowPerformanceTargetPreparer 130 final CommandResult result = device.executeFastbootCommand(command.split("\\s+")); in executeFastbootCommand() 150 CommandResult deviceInfoCmdResult = executeFastbootCommand(device, "oem device-info"); in getOemDeviceInfo()
|
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/util/image/ |
D | IncrementalImageUtil.java | 624 mDevice.executeFastbootCommand("snapshot-update", "cancel"); in internalUpdateDevice() 628 CommandResult wipeResults = mDevice.executeFastbootCommand("-w"); in internalUpdateDevice() 775 mDevice.executeFastbootCommand( in updateBootloaderAndBasebandIfNeeded() 788 mDevice.executeFastbootCommand( in updateBootloaderAndBasebandIfNeeded() 807 mDevice.executeFastbootCommand( in revertBootloaderAndBasebandifNeeded() 821 mDevice.executeFastbootCommand( in revertBootloaderAndBasebandifNeeded() 882 CommandResult result = mDevice.executeFastbootCommand("-w"); in flashStaticPartition()
|
/aosp_15_r20/device/google/cuttlefish/tests/fastboot/src/com/android/cuttlefish/tests/ |
D | OemlockTest.java | 60 final CommandResult result = getDevice().executeFastbootCommand("flashing", in setLockedState() 74 final CommandResult eraseResult = getDevice().executeFastbootCommand( in verifyErasingSuccess()
|
D | FastbootFlashingTest.java | 33 getDevice().executeFastbootCommand("erase", "userdata"); in testFastbootUserdataEraseClearsTheDevice()
|
/aosp_15_r20/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | DeviceWiper.java | 86 device.executeFastbootCommand("reboot"); in doFormat() 96 device.executeFastbootCommand("reboot"); in doErase()
|
D | FastbootCommandPreparer.java | 82 final CommandResult result = device.executeFastbootCommand(cmd.split("\\s+")); in setUp() 106 device.executeFastbootCommand(cmd.split("\\s+")); in tearDown()
|
D | CdmaDeviceFlasher.java | 181 device.executeFastbootCommand("reboot"); in flashSystem()
|
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | FastbootDeviceFlasher.java | 279 CommandResult result = device.executeFastbootCommand(mWipeTimeout, "-w"); in handleUserDataFlashing() 328 CommandResult result = device.executeFastbootCommand("getvar", partitionType); in hasPartition() 990 CommandResult result = device.executeFastbootCommand("getvar", versionQuery); in fetchImageVersion() 1058 CommandResult result = device.executeFastbootCommand(cmdArgs); in executeFastbootCmd()
|
D | DeviceCleaner.java | 106 device.executeFastbootCommand("reboot"); in clean()
|
D | DeviceFlashPreparer.java | 409 device.executeFastbootCommand( in setUp()
|
D | DeviceSetup.java | 1041 device.executeFastbootCommand("oem", "ramdump", "disable"); in changeSystemProps()
|
/aosp_15_r20/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | INativeDevice.java | 513 public CommandResult executeFastbootCommand(String... commandArgs) in executeFastbootCommand() method 527 public CommandResult executeFastbootCommand(long timeout, String... commandArgs) in executeFastbootCommand() method
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | TestDeviceFuncTest.java | 560 mTestDevice.executeFastbootCommand("getvar", "product").getStatus()); in testExecuteFastbootCommand_deviceInAdb() 594 mTestDevice.executeFastbootCommand("badcommand").getStatus()); in testExecuteFastbootCommand_badCommand()
|
D | NativeDeviceTest.java | 1705 public CommandResult executeFastbootCommand(String... cmdArgs) in testDoReboot_fastboot() 1777 public CommandResult executeFastbootCommand(String... cmdArgs) in testRebootIntoBootloader_forceFastboot() 1843 public CommandResult executeFastbootCommand(String... cmdArgs) in testRebootIntoFastbootd_forceFastboot()
|
D | TestDeviceTest.java | 1203 mNoFastbootTestDevice.executeFastbootCommand(""); in testExecuteFastbootCommand_nofastboot() 1217 mNoFastbootTestDevice.executeFastbootCommand(""); in testExecuteLongFastbootCommand_nofastboot() 1250 mTestDevice.executeFastbootCommand("foo"); in testExecuteFastbootCommand_state() 1289 mTestDevice.executeFastbootCommand("foo"); in testExecuteFastbootCommand_recovery()
|
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 916 CommandResult result = executeFastbootCommand("getvar", variableName); in getFastbootVariable() 2455 public CommandResult executeFastbootCommand(String... cmdArgs) in executeFastbootCommand() method in NativeDevice 2465 public CommandResult executeFastbootCommand(long timeout, String... cmdArgs) in executeFastbootCommand() method in NativeDevice 3666 executeFastbootCommand(String.format("reboot-%s", mode)); in rebootIntoFastbootInternal() 3981 executeFastbootCommand("reboot"); in doReboot() 4464 CommandResult res = executeFastbootCommand("--version"); in getFastbootVersion()
|
/aosp_15_r20/tools/tradefederation/prebuilts/filegroups/tradefed/ |
D | tradefed-tests.jar | IncludeFilterTest.jar
META-INF/
META-INF/LICENSE
META-INF/MANIFEST.MF
... |
D | tradefed.jar | FileMd5$FileChecksum$1.class
FileMd5.java
package FileMd5$FileChecksum$1 extends com. ... |