Searched refs:fastbootOutput (Results 1 – 2 of 2) sorted by relevance
323 CommandResult fastbootOutput = new CommandResult(); in testWipeCache_exists() local324 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 …]
167 Set<String> parseDevices(String fastbootOutput, boolean fastbootd) { in parseDevices() argument175 Matcher fastbootMatcher = fastbootPattern.matcher(fastbootOutput); in parseDevices()