HomeSort by relevance Sort by last modified time
    Searched refs:shell (Results 1 - 25 of 1200) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/tests/scripts/
prep_volantis.sh 19 adb shell stop mpdecision
20 adb shell stop perfd
21 adb shell stop
22 for pid in $( adb shell ps | awk '{ if ( $9 == "surfaceflinger" ) { print $2 } }' ); do
23 adb shell kill $pid
25 adb shell setprop debug.egl.traceGpuCompletion 1
26 adb shell daemonize surfaceflinger
28 adb shell setprop service.bootanim.exit 1
39 adb shell "echo userspace > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"
40 adb shell "echo $S > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
    [all...]
  /external/valgrind/none/tests/scripts/
shell_nonexec.stderr.exp 1 valgrind: ./shell.vgtest: Permission denied
  /build/kati/testcase/
shell_stderr.mk 1 FOO=$(shell echo SHOULD_NOT_BE_AFTER_ECHO 1>&2)
hash_in_var.mk 1 $(shell mkdir -p tmp)
2 file = $(shell echo tmp/test\#.ext)
shell_var.mk 1 $(info $(SHELL))
3 SHELL:=/bin/echo
5 $(info $(shell foo))
8 SHELL=$(echo)
10 $(info $(shell bar))
find_command_sorted.mk 1 # TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))
3 # ninja: $(sort $(shell "find .")) becomes "$( .) find"
7 @echo $(sort $(shell $(1)))
  /frameworks/webview/chromium/tools/
webview_command_line 21 adb shell "cat $CMD_LINE_FILE 2>/dev/null" | cut -d" " -f "2-"
25 adb shell rm $CMD_LINE_FILE >/dev/null
29 adb shell "echo 'webview $*' > $CMD_LINE_FILE"
30 adb shell chmod 0664 $CMD_LINE_FILE
  /external/jacoco/org.jacoco.build/
publish.sh 10 ssh $USERNAME,eclemma@shell.sourceforge.net create
11 ssh $USERNAME,eclemma@shell.sourceforge.net '/home/project-web/eclemma/scripts/publish-jacoco-snapshot.sh'
  /frameworks/base/tests/backup/
test_backup.sh 22 b_pkgs=$(a shell dumpsys backup | \
28 a shell bmgr wipe "$pkg"
41 #a shell bmgr transport com.google.android.backup/.BackupTransportService
44 a shell \
61 a shell bmgr backup com.android.backuptest
64 a shell bmgr run
test_restore.sh 25 data=$(a shell cat /data/data/com.android.backuptest/$1)
40 data=$(a shell "ls $@ 2> /dev/null >/dev/null && echo -n exists")
53 a shell "ls -l /data/data/com.android.backuptest/files"
54 a shell "rm /data/data/com.android.backuptest/files/*"
56 a shell "ls -l /data/data/com.android.backuptest/shared_prefs"
57 a shell "rm /data/data/com.android.backuptest/shared_prefs/*"
59 a shell "ls -l /data/data/com.android.backuptest/files"
60 a shell "ls -l /data/data/com.android.backuptest/shared_prefs"
69 restore_set=$(a shell bmgr list sets | head -n1 | awk '{print $1}')
73 a shell bmgr restore "$restore_set
    [all...]
  /system/extras/tests/ext4/
android_emmc_perf_tests.sh 22 if ! adb shell true >/dev/null 2>&1
27 HARDWARE=`adb shell getprop ro.hardware | tr -d "\r"`
87 adb shell stop
88 adb shell stop sdcard
89 adb shell stop ril-daemon
90 adb shell stop media
91 adb shell stop drm
92 adb shell stop keystore
93 adb shell stop tf_daemon
94 adb shell stop bluetooth
    [all...]
  /external/skia/platform_tools/android/bin/
android_kill_skia 11 $ADB $DEVICE_SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL shell kill
13 $ADB $DEVICE_SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell kill
  /external/v8/build/android/
adb_content_shell_command_line 7 # If no flags are given, prints the current content shell flags.
9 # Otherwise, the given flags are used to REPLACE (not modify) the content shell
13 # To remove all content shell flags, pass an empty string for the flags:
17 /data/local/tmp/content-shell-command-line "$@"
adb_kill_android_webview_shell 7 # Kill a running android webview shell.
11 SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.android_webview.shell')
14 echo "Not running android webview shell."
19 adb shell kill $SHELL_PID
22 echo "Android webview shell does not appear to be running."
adb_kill_blimp_client 11 SHELL_PID_LINES=$(adb shell ps | grep -w 'org.chromium.blimp')
19 adb shell kill $SHELL_PID
adb_kill_chrome_public 11 SHELL_PID_LINES=$(adb shell ps | grep -w 'org.chromium.chrome')
19 adb shell kill $SHELL_PID
adb_kill_content_shell 7 # Kill a running content shell.
11 SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.content_shell_apk')
14 echo "Not running Content shell."
19 adb shell kill $SHELL_PID
22 echo "Content shell does not appear to be running."
adb_run_android_webview_shell 9 adb shell am start \
11 -n org.chromium.android_webview.shell/.AwShellActivity \
  /art/tools/
setup-buildbot-device.sh 21 adb shell date
24 adb shell setenforce 0
25 adb shell getenforce
28 adb shell ifconfig lo up
29 adb shell ifconfig
32 adb shell getprop
35 adb shell uptime
38 adb shell dumpsys battery
50 timeout 2s adb shell "ps"
56 processes=$(adb shell "ps" | grep dalvikvm | awk '{print $2}'
    [all...]
  /art/build/
Android.common_utils.mk 24 art-string-to-uppercase = $(shell echo $(1) | tr '[:lower:]' '[:upper:]')
  /external/v8/tools/testrunner/objects/
peer.py 47 def AddTests(self, shell):
48 """Adds tests from |shell| to this peer.
50 Stops when self.needed_work reaches zero, or when all of shell's tests
53 if shell.shell not in self.shells:
54 self.shells.add(shell.shell)
55 while len(shell.tests) > 0 and self.needed_work > 0:
56 t = shell.tests.pop()
59 shell.total_duration -= t.duratio
    [all...]
  /external/icu/icu4c/source/samples/
defs.mk 8 CC=$(shell icu-config --cc)
9 CXX=$(shell icu-config --cxx)
10 CPPFLAGS=$(shell icu-config --cppflags)
11 CFLAGS=$(shell icu-config --cflags)
12 CXXFLAGS=$(shell icu-config --cxxflags)
13 LDFLAGS =$^ $(shell icu-config --ldflags)
14 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
15 INVOKE=$(shell icu-config --invoke)
16 GENRB=$(shell icu-config --invoke=genrb)
18 PKGDATA=$(shell icu-config --invoke=pkgdata
    [all...]
  /external/v8/tools/testrunner/network/
distro.py 29 class Shell(object):
30 def __init__(self, shell):
31 self.shell = shell
57 shell = s.shell()
58 if not shell in shells:
59 shells[shell] = Shell(shell)
    [all...]
  /system/extras/ANRdaemon/
ANRdaemon_get_trace.sh 12 PID=$(adb $DEVICE shell "ps | grep anrd")
20 adb $DEVICE shell "kill -s SIGUSR1 $PID"
22 TRACE_FILE=$(adb $DEVICE shell "ls $TRACE_DIR \
26 adb $DEVICE shell "lsof $PID" | grep $TRACE_FILE > /dev/null
30 adb $DEVICE shell "lsof $PID" | grep "$TRACE_FILE" > /dev/null
  /external/vulkan-validation-layers/demos/smoke/
Main.cpp 46 ShellXcb shell(*game);
47 shell.run();
64 ShellAndroid shell(*app, *game);
65 shell.run();
82 ShellWin32 shell(*game);
83 shell.run();

Completed in 4958 milliseconds

1 2 3 4 5 6 7 8 91011>>