Home
last modified time | relevance | path

Searched refs:fastbootOutput (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DFastbootDeviceFlasherTest.java297 CommandResult fastbootOutput = new CommandResult(); in testWipeCache_exists() local
298 fastbootOutput.setStatus(CommandStatus.SUCCESS); in testWipeCache_exists()
299 fastbootOutput.setStderr("(bootloader) slot-count: not found\n" + in testWipeCache_exists()
304 fastbootOutput.setStdout(""); in testWipeCache_exists()
307 andReturn(fastbootOutput); in testWipeCache_exists()
309 fastbootOutput = new CommandResult(); in testWipeCache_exists()
310 fastbootOutput.setStatus(CommandStatus.SUCCESS); in testWipeCache_exists()
311 fastbootOutput.setStderr("Creating filesystem with parameters:\n" + in testWipeCache_exists()
331 EasyMock.expect(mMockDevice.fastbootWipePartition("cache")).andReturn(fastbootOutput); in testWipeCache_exists()
346 CommandResult fastbootOutput = new CommandResult(); in testWipeCache_not_exists() local
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DFastbootHelper.java134 Set<String> parseDevices(String fastbootOutput, boolean fastbootd) { in parseDevices() argument
142 Matcher fastbootMatcher = fastbootPattern.matcher(fastbootOutput); in parseDevices()