Searched refs:commandOutput (Results 1 – 2 of 2) sorted by relevance
1185 String commandOutput = executeShellCommand(command); in tokenizeListUsers() local1187 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() local1217 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() local1231 return Integer.parseInt(commandOutput.substring(commandOutput.lastIndexOf(" ")).trim()); in getMaxNumberOfRunningUsersSupported()1233 CLog.e("Failed to parse result: %s", commandOutput); in getMaxNumberOfRunningUsersSupported()[all …]
104 String commandOutput = device.executeShellCommand(command); in setUp() local105 String[] cmdTokens = commandOutput.split("\\s+"); in setUp()