HomeSort by relevance Sort by last modified time
    Searched refs:executeShellCommand (Results 51 - 75 of 326) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTest.java 148 mDevice.executeShellCommand(String.format("mkdir %s", remoteFilePath));
161 CLog.v("%s", mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)));
164 mDevice.executeShellCommand(String.format("%s %s", fullPath, flags), resultParser,
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
AndroidBvtHelper.java 92 * https://developer.android.com/reference/android/app/UiAutomation.html#executeShellCommand(
95 public List<String> executeShellCommand(String cmd) {
100 ParcelFileDescriptor pfd = mUiAutomation.executeShellCommand(cmd);
153 executeShellCommand(cmd);
SysUIMultiWindowTests.java 74 List<String> cmdOut = mABvtHelper.executeShellCommand("am stack list");
85 mUiAutomation.executeShellCommand(
105 mUiAutomation.executeShellCommand(
  /cts/tests/tests/mediastress/preconditions/tests/src/android/mediastress/cts/preconditions/
MediaPreparerTest.java 94 EasyMock.expect(mMockDevice.executeShellCommand(
103 EasyMock.expect(mMockDevice.executeShellCommand(
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
LocationCheck.java 42 String adbFeatures = device.executeShellCommand("pm list features");
WifiCheck.java 51 String pmFeatures = device.executeShellCommand("pm list features");
  /cts/hostsidetests/abioverride/src/android/abioverride/cts/
AbiOverrideTest.java 90 device.executeShellCommand(START_COMMAND);
  /cts/hostsidetests/systemui/src/android/host/systemui/
TileServiceTest.java 153 getDevice().executeShellCommand(START_ACTIVITY_AND_COLLAPSE);
  /cts/libs/deviceutil/src/android/cts/util/
SystemUtil.java 60 ParcelFileDescriptor pfd = instrumentation.getUiAutomation().executeShellCommand(cmd);
  /cts/tests/tests/telephony2/src/android/telephony2/cts/
PhoneNumberTest.java 41 .executeShellCommand(command.toString());
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 71 device.executeShellCommand(
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
GraphicsStatsMonitor.java 190 executeShellCommand(String.format("dumpsys gfxinfo %s reset", stat.packageName));
202 BufferedReader stream = executeShellCommand("dumpsys graphicsstats");
295 public BufferedReader executeShellCommand (String command) {
296 ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command);
  /platform_testing/tests/jank/ime_wear/src/com/android/wearable/ime/janktests/
IMEJankTestsHelper.java 175 mDevice.executeShellCommand(String.format(ENABLE_IME_CMD, KEYBOARD_ID));
176 mDevice.executeShellCommand(String.format(SET_IME_CMD, KEYBOARD_ID));
185 mDevice.executeShellCommand(String.format(ENABLE_IME_CMD, HANDWRITING_ID));
186 mDevice.executeShellCommand(String.format(SET_IME_CMD, HANDWRITING_ID));
  /platform_testing/tests/perf/PerformanceAppTest/src/com/android/performanceapp/tests/
AppLaunchTests.java 149 .executeShellCommand(ATRACE_START));
175 getInstrumentation().getUiAutomation().executeShellCommand(ATRACE_DUMP);
196 getInstrumentation().getUiAutomation().executeShellCommand(ATRACE_STOP));
202 getInstrumentation().getUiAutomation().executeShellCommand(
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceTask.java 43 mDevice.executeShellCommand("atrace " + mOptions, new Receiver(), 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
GdbServerTask.java 71 mDevice.executeShellCommand(command, mOutputReceiver, 0);
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 170 mDevice.executeShellCommand(CLEAR_GENERATED_CMD);
176 if (checkHardwareTypeSkipTest(mDevice.executeShellCommand(HARDWARE_TYPE_CMD).trim())) {
289 mDevice.executeShellCommand(STOP_CMD);
293 mDevice.executeShellCommand(START_CMD, receiver, TEST_RESULT_TIMEOUT,
341 final String output = device.executeShellCommand(WM_DENSITY);
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
ManagedProfileTest.java 187 + getDevice().executeShellCommand(command));
560 getDevice().executeShellCommand("appwidget grantbind --user " + mParentUserId
619 + getDevice().executeShellCommand(command));
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTestCase.java 147 protected String executeShellCommand(String command) throws Exception {
154 executeShellCommand("pm clear com.android.documentsui");
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostResultTest.java 117 device.executeShellCommand(String.format("rm %s", devicePath));
133 device.executeShellCommand(String.format("rm %s", devicePath));
  /cts/hostsidetests/tv/src/com/android/cts/tv/
TvInputManagerHostTest.java 106 device.executeShellCommand(START_COMMAND);
135 String commandOutput = getDevice().executeShellCommand(command);
  /cts/hostsidetests/shortcuts/hostside/src/android/content/pm/cts/shortcuthost/
BaseShortcutManagerHostTest.java 86 CLog.w(getDevice().executeShellCommand("dumpsys shortcut"));
91 final String output = getDevice().executeShellCommand(command);
98 getDevice().executeShellCommand("cmd shortcut clear-shortcuts --user " + userId
200 final String output = getDevice().executeShellCommand(command);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
ShellCommandBuilder.java 73 try (ParcelFileDescriptor fd = automation.executeShellCommand(command)) {
  /cts/tests/tests/telecom/src/android/telecom/cts/
WiredHeadsetTest.java 124 TestUtils.executeShellCommand(getInstrumentation(), command);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 67 device.executeShellCommand(command, new AMReceiver(info, device, mLaunchController));

Completed in 1716 milliseconds

1 23 4 5 6 7 8 91011>>