HomeSort by relevance Sort by last modified time
    Searched refs:commandOutput (Results 1 - 11 of 11) sorted by null

  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
BaseDevicePolicyTest.java 195 String commandOutput = getDevice().executeShellCommand(command);
196 CLog.d("Output for command " + command + ": " + commandOutput);
226 String commandOutput = getDevice().executeShellCommand(command);
227 CLog.i("Output for command " + command + ": " + commandOutput);
229 String[] lines = commandOutput.split("\\r?\\n");
230 assertTrue(commandOutput + " should contain at least one line", lines.length >= 1);
484 String commandOutput = getDevice().executeShellCommand(command);
485 CLog.i("Output for command " + command + ": " + commandOutput);
489 for (String feature: commandOutput.split("\\s+")) {
520 String commandOutput = getDevice().executeShellCommand(command)
    [all...]
BaseDeviceAdminServiceTest.java 200 final String commandOutput = getDevice().executeShellCommand(command);
201 CLog.d("Output for command " + command + ":\n" + commandOutput);
202 return commandOutput;
206 final String commandOutput = rumpDumpSysService(component);
207 for (String line : commandOutput.split("\r*\n")) {
212 fail("Service " + OWNER_SERVICE + " not bound. Output was:\n" + commandOutput);
216 final String commandOutput = rumpDumpSysService(component);
217 for (String line : commandOutput.split("\r*\n")) {
219 fail("Service " + OWNER_SERVICE + " is bound. Output was:\n" + commandOutput);
EphemeralUserTest.java 108 String commandOutput = getDevice().executeShellCommand("dumpsys user");
109 String[] outputLines = commandOutput.split("\n");
ManagedProfileTest.java     [all...]
  /cts/hostsidetests/media/src/android/media/cts/
BaseMultiUserTest.java 177 String commandOutput = getDevice().executeShellCommand(command);
178 CLog.d("Output for command " + command + ": " + commandOutput);
179 return commandOutput != null ? commandOutput.trim() : "";
184 String commandOutput = executeShellCommand(command);
186 String[] tokens = commandOutput.split("\\s+");
316 String commandOutput = executeShellCommand(
318 if (commandOutput == null || commandOutput.isEmpty() || commandOutput.equals("null"))
    [all...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
BatteryIncidentTest.java 69 final String commandOutput = device.executeShellCommand("pm list features");
70 return commandOutput.contains(LEANBACK_FEATURE);
NetstatsIncidentTest.java 392 final String commandOutput = getDevice().executeShellCommand("pm list features");
393 return commandOutput.contains(FEATURE_WIFI);
  /tools/tradefederation/core/src/com/android/tradefed/device/
TestDevice.java 787 String commandOutput = executeShellCommand(command);
789 String[] lines = commandOutput.split("\\r?\\n");
792 String.format("'%s' in not a valid output for 'pm list users'", commandOutput));
804 commandOutput, lines[i]));
    [all...]
  /cts/hostsidetests/tv/src/com/android/cts/tv/
TvInputManagerHostTest.java 134 String commandOutput = getDevice().executeShellCommand(command);
135 CLog.i("Output for command " + command + ": " + commandOutput);
139 for (String feature: commandOutput.split("\\s+")) {
  /cts/hostsidetests/numberblocking/src/com/android/cts/numberblocking/hostside/
NumberBlockingTest.java 210 String commandOutput = getDevice().executeShellCommand("dumpsys user");
211 String[] tokens = commandOutput.split("\\n");
  /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DeqpTestRunner.java     [all...]

Completed in 251 milliseconds