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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
shell_nonexec.stderr.exp 1 valgrind: ./shell.vgtest: Permission denied
shell 3 # Testing various shell script invocations.
6 # Shell scripts that should fail
13 ./shell.vgtest
28 # Shell scripts that should pass
  /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...]
  /external/icu4c/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/webkit/Source/WebCore/platform/brew/
SoundBrew.cpp 39 IShell* shell = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIShell; local
40 ISHELL_Beep(shell, BEEP_ERROR, TRUE);
  /external/quake/
setupdevicesdcard.sh 25 adb shell mkdir /sdcard
26 adb shell mkdir /sdcard/data
27 adb shell mkdir /sdcard/data/quake
28 adb shell mkdir /sdcard/data/quake/id1
setupdevice.sh 25 adb shell mkdir /data
26 adb shell mkdir /data/quake
27 adb shell mkdir /data/quake/id1
cleanupdevicesdcard.sh 43 adb shell rm /sdcard/data/quake/id1/glQuake/*
44 adb shell rm /sdcard/data/quake/id1/glQuake/.DS_Store
45 adb shell rmdir /sdcard/data/quake/glQuake
46 adb shell rm /sdcard/data/quake/id1/*
47 adb shell rm /sdcard/data/quake/id1/.DS_Store
48 adb shell rmdir /sdcard/data/quake/id1
49 adb shell rm /sdcard/data/quake/.DS_Store
50 adb shell rmdir /sdcard/data/quake
  /dalvik/tools/
dexcheck 24 # 2. Set up a standard shell environment (envsetup.sh, lunch, etc.).
31 # lines written to your shell window naming each of the files. If
44 files=`adb shell "cd /data/dalvik-cache; echo *" | sed -e s/.$//`
59 errout=`adb shell "dexdump /data/dalvik-cache/$file > dev/null"`
  /external/webkit/Source/WebKit2/
Makefile 3 OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
4 BUILD_WEBKIT2 = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
  /external/webkit/Tools/MiniBrowser/
Makefile 3 OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
4 BUILD_MINIBROWSER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
  /external/webkit/Tools/TestWebKitAPI/
Makefile 3 OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
4 BUILD_TESTWEBKITAPI = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
  /external/webkit/Tools/WebKitTestRunner/
Makefile 3 OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
4 BUILD_WEBKITTESTRUNNER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
  /frameworks/base/tests/CoreTests/
run_junit.sh 1 # runs unit tests over adb shell using dalvikvm. The value added is setting the classpath for you
9 adb shell exec dalvikvm -cp system/app/MoreTests.apk junit.textui.TestRunner $*
  /frameworks/compile/libbcc/runtime/make/
config.mk 4 OS := $(shell uname)
8 ProjSrcRoot := $(shell pwd)
  /sdk/ddms/app/src/com/android/ddms/
AboutDialog.java 34 import org.eclipse.swt.widgets.Shell;
48 public AboutDialog(Shell parent) {
55 public AboutDialog(Shell parent, int style) {
63 Shell parent = getParent();
64 Shell shell = new Shell(parent, getStyle()); local
65 shell.setText("About...");
67 logoImage = loadImage(shell, "ddms-128.png"); //$NON-NLS-1$
68 createContents(shell);
    [all...]
DeviceCommandDialog.java 41 import org.eclipse.swt.widgets.Shell;
80 public DeviceCommandDialog(String command, String fileName, Shell parent) {
90 public DeviceCommandDialog(String command, String fileName, Shell parent,
103 Shell parent = getParent();
104 Shell shell = new Shell(parent, getStyle()); local
105 shell.setText("Remote Command");
108 mFont = findFont(shell.getDisplay());
109 createContents(shell);
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
DumpRenderTree.cpp 50 static const char optionTestShell[] = "--test-shell";
77 static void runTest(TestShell& shell, TestParams& params, const string& testName, bool testShellMode)
79 int oldTimeoutMsec = shell.layoutTestTimeout();
93 shell.setLayoutTestTimeout(atoi(timeOut.c_str()));
104 v8::V8::SetFlagsFromString(shell.javaScriptFlags().c_str(), shell.javaScriptFlags().length());
105 if (shell.stressOpt() || shell.stressDeopt()) {
106 if (shell.stressOpt())
113 shell.setDumpWhenFinished(isLastLoad)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ScreenShotDialog.java 42 import org.eclipse.swt.widgets.Shell;
67 public ScreenShotDialog(Shell parent) {
75 public ScreenShotDialog(Shell parent, int style) {
86 Shell parent = getParent();
87 Shell shell = new Shell(parent, getStyle()); local
88 shell.setText("Device Screen Capture");
90 createContents(shell);
91 shell.pack()
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/brew/
ShellBrew.h 46 IShell* shell = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIShell; local
47 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));
58 IShell* shell = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIShell; local
59 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));
  /frameworks/base/core/tests/overlaytests/
runtests.sh 44 $adb shell rm /vendor/overlay/framework/framework-res.apk
45 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idmap
51 $adb shell ln -s /data/app/com.android.overlaytest.overlay.apk /vendor/overlay/framework/framework-res.apk
59 $adb shell am instrument -w -e class $class com.android.overlaytest/android.test.InstrumentationTestRunner | tee -a $log
75 $adb shell stop
77 $adb shell start
82 $adb shell stop
84 $adb shell start
  /system/extras/tests/fstest/
mounts-test.sh 5 adb shell mount | grep -q /sdcard
14 adb shell mount | grep /sdcard | grep -q $i
24 adb shell ls /dev/*mem | grep -q $i
  /system/extras/tests/sdcard/
profile_sdcard.sh 19 adb shell cat /proc/version
22 adb shell cat /sys/kernel/debug/sched_features
40 adb shell sdcard_perf_test --test=write --procnb=${p} --size=1000 --chunk-size=100 --iterations=50 >/tmp/tmp-sdcard.txt
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
MessageBoxLog.java 23 import org.eclipse.swt.widgets.Shell;
116 Shell shell = null;
118 shell = mDisplay.getActiveShell();
120 if (shell == null || shell.isDisposed()) {
126 MessageDialog.openInformation(shell, "Android Virtual Devices Manager",
129 MessageDialog.openError(shell, "Android Virtual Devices Manager",

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>