HomeSort by relevance Sort by last modified time
    Searched refs:executeShellCommand (Results 176 - 200 of 669) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/tests/ActivityManagerPerfTests/utils/src/com/android/frameworks/perftests/am/util/
Utils.java 41 InstrumentationRegistry.getInstrumentation()).executeShellCommand(cmd);
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/rule/
ShellCommandRule.java 48 .executeShellCommand(command);
  /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);
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
LocationCheck.java 41 String adbFeatures = device.executeShellCommand("pm list features");
WifiCheck.java 48 String pmFeatures = device.executeShellCommand("pm list features");
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
CpuFeatures.java 34 device.executeShellCommand("uname " + option, Out);
  /test/vts/harnesses/tradefed/tests/src/com/android/tradefed/targetprep/
VtsTraceCollectPreparerTest.java 139 EasyMock.expect(mMockDevice.executeShellCommand(EasyMock.eq("getenforce")))
142 EasyMock.expect(mMockDevice.executeShellCommand(
176 EasyMock.expect(mMockDevice.executeShellCommand(EasyMock.eq("getenforce")))
178 EasyMock.expect(mMockDevice.executeShellCommand(
  /tools/tradefederation/contrib/src/com/android/media/tests/
AudioLevelUtility.java 37 device.executeShellCommand(
  /tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/
UiPerformanceTest.java 95 mTestDevice.executeShellCommand(String.format("mkdir \"%s\"", rawFileDir));
98 mTestDevice.executeShellCommand(String.format("rm %s/*", rawFileDir));
133 mTestDevice.executeShellCommand(String.format("ls \"%s\"", rawFileDir));
224 mTestDevice.executeShellCommand(String.format("rm %s/%s", extStore, OUTPUT_FILE_NAME));
  /tools/tradefederation/core/src/com/android/tradefed/device/
BatteryTemperature.java 77 device.executeShellCommand("dumpsys battery", receiver);
INativeDevice.java 199 * {@link #executeShellCommand(String, IShellOutputReceiver, long, TimeUnit, int)} with
207 public void executeShellCommand(String command, IShellOutputReceiver receiver)
213 * @see #executeShellCommand(String, IShellOutputReceiver)
226 public void executeShellCommand(String command, IShellOutputReceiver receiver,
233 * @see #executeShellCommand(String, IShellOutputReceiver)
248 public void executeShellCommand(
265 public String executeShellCommand(String command) throws DeviceNotAvailableException;
319 * {@link #executeShellCommand(String)} should be used instead wherever possible, as that
    [all...]
NativeDevice.java 605 public void executeShellCommand(final String command, final IShellOutputReceiver receiver)
611 getIDevice().executeShellCommand(command, receiver,
623 public void executeShellCommand(final String command, final IShellOutputReceiver receiver,
630 getIDevice().executeShellCommand(command, receiver,
640 public void executeShellCommand(
655 .executeShellCommand(
671 public String executeShellCommand(String command) throws DeviceNotAvailableException {
673 executeShellCommand(command, receiver);
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/suite/checker/
ActivityStatusChecker.java 43 device.executeShellCommand(
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
DefaultTestsZipInstaller.java 132 device.executeShellCommand("chown system.system " + dir.getPath());
160 device.executeShellCommand("stop");
162 device.executeShellCommand("stop installd");
200 result = device.executeShellCommand(String.format("rm -r %s", fullEscapedPath));
DeviceStringPusher.java 57 device.executeShellCommand(String.format("rm -f %s", mFileName));
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
GoogleBenchmarkTest.java 156 testDevice.executeShellCommand(String.format("chmod 755 %s", root));
177 testDevice.executeShellCommand(cmd, outputCollector,
192 String exec = testDevice.executeShellCommand(String.format("file %s", fullBinaryPath));
199 String list_output = testDevice.executeShellCommand(cmd);
NativeBenchmarkTest.java 190 testDevice.executeShellCommand(String.format("chmod 755 %s", fullPath));
207 testDevice.executeShellCommand(cmd, resultParser,
262 mDevice.executeShellCommand(
269 mDevice.executeShellCommand(
  /tools/tradefederation/core/src/com/android/tradefed/util/sl4a/
Sl4aClient.java 156 mDevice.executeShellCommand(String.format(SL4A_LAUNCH_CMD, mDeviceSidePort));
172 String out1 = mDevice.executeShellCommand(IS_SL4A_RUNNING_CMD_OLD);
173 String out2 = mDevice.executeShellCommand(IS_SL4A_RUNNING_CMD);
279 mDevice.executeShellCommand(STOP_SL4A_CMD);
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
DumpHeapCollectorTest.java 70 when(mDevice.executeShellCommand(String.format("dumpsys meminfo -c | grep camera")))
73 when(mDevice.executeShellCommand(String.format("dumpsys meminfo -c | grep maps")))
76 when(mDevice.executeShellCommand("am dumpheap camera /data/local/tmp/camera_trigger.hprof"))
174 when(mDevice.executeShellCommand(
  /tools/tradefederation/core/tests/src/com/android/tradefed/proto/
PlatformProtosFuncTest.java 67 getDevice().executeShellCommand(CMD_DUMP_BATTERYSTATS, receiver);
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
NativeBenchmarkTestTest.java 119 EasyMock.expect(mDevice.executeShellCommand(EasyMock.eq("cat "
122 EasyMock.expect(mDevice.executeShellCommand(EasyMock.eq("cat "
140 EasyMock.expect(mDevice.executeShellCommand(EasyMock.eq("chmod 755 " + fakeFullPath)))
142 mDevice.executeShellCommand(EasyMock.eq(fakeFullPath + " -n 1000 -d 0.000000 -c 1 -s 1"),
  /platform_testing/tests/perf/PerfTransitionTest/src/com/android/apptransition/tests/
LatencyTests.java 185 mDevice.executeShellCommand(FINGERPRINT_WAKE_FAKE_COMMAND);
215 mDevice.executeShellCommand(TURN_ON_SCREEN_COMMAND);
271 mDevice.executeShellCommand(String.format(AM_START_COMMAND_TEMPLATE,
312 mDevice.executeShellCommand(String.format(AM_START_COMMAND_TEMPLATE,
341 mDevice.executeShellCommand(String.format(AM_START_COMMAND_TEMPLATE,
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
NativeDeviceTest.java 273 public String executeShellCommand(String cmd) throws DeviceNotAvailableException {
301 public String executeShellCommand(String command)
344 public String executeShellCommand(String command)
412 public String executeShellCommand(String command)
482 public String executeShellCommand(String command)
    [all...]

Completed in 717 milliseconds

1 2 3 4 5 6 78 91011>>