Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DFastbootDeviceFlasherTest.java323 CommandResult fastbootOutput = new CommandResult(); in testWipeCache_exists() local
324 fastbootOutput.setStatus(CommandStatus.SUCCESS); in testWipeCache_exists()
325 fastbootOutput.setStderr( in testWipeCache_exists()
331 fastbootOutput.setStdout(""); in testWipeCache_exists()
334 .thenReturn(fastbootOutput); in testWipeCache_exists()
336 fastbootOutput = new CommandResult(); in testWipeCache_exists()
337 fastbootOutput.setStatus(CommandStatus.SUCCESS); in testWipeCache_exists()
338 fastbootOutput.setStderr( in testWipeCache_exists()
359 when(mMockDevice.fastbootWipePartition("cache")).thenReturn(fastbootOutput); in testWipeCache_exists()
373 CommandResult fastbootOutput = new CommandResult(); in testWipeCache_not_exists() local
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DFastbootHelper.java167 Set<String> parseDevices(String fastbootOutput, boolean fastbootd) { in parseDevices() argument
175 Matcher fastbootMatcher = fastbootPattern.matcher(fastbootOutput); in parseDevices()