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