Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java1185 String commandOutput = executeShellCommand(command); in tokenizeListUsers() local
1187 String[] lines = commandOutput.split("\\r?\\n"); in tokenizeListUsers()
1190 String.format("'%s' in not a valid output for 'pm list users'", commandOutput)); in tokenizeListUsers()
1202 commandOutput, lines[i])); in tokenizeListUsers()
1215 String commandOutput = executeShellCommand(command); in getMaxNumberOfUsersSupported() local
1217 return Integer.parseInt(commandOutput.substring(commandOutput.lastIndexOf(" ")).trim()); in getMaxNumberOfUsersSupported()
1219 CLog.e("Failed to parse result: %s", commandOutput); in getMaxNumberOfUsersSupported()
1229 String commandOutput = executeShellCommand(command); in getMaxNumberOfRunningUsersSupported() local
1231 return Integer.parseInt(commandOutput.substring(commandOutput.lastIndexOf(" ")).trim()); in getMaxNumberOfRunningUsersSupported()
1233 CLog.e("Failed to parse result: %s", commandOutput); in getMaxNumberOfRunningUsersSupported()
[all …]
/tools/tradefederation/contrib/src/com/android/aetest/tradefed/targetprep/
DAeTestManagedProfileCreator.java104 String commandOutput = device.executeShellCommand(command); in setUp() local
105 String[] cmdTokens = commandOutput.split("\\s+"); in setUp()