/external/valgrind/main/none/tests/ |
shell_nonexec.vgtest | 1 prog: shell.vgtest
|
shell.vgtest | 1 prog: shell
|
shell_nonexec.stderr.exp | 1 valgrind: ./shell.vgtest: Permission denied
|
shell.stderr.exp | 1 ./shell: ./x86/: is a directory 2 ./shell: ./shell.vgtest: Permission denied 6 ./shell: ./shell_binaryfile: cannot execute binary file 7 ./shell: ./shell_nosuchfile: No such file or directory 8 ./shell: shell_nosuchfile: command not found
|
shell.stderr.exp-dash | 1 ./shell: 10: ./x86/: Permission denied 2 ./shell: 13: ./shell.vgtest: Permission denied 7 ./shell: 22: ./shell_nosuchfile: not found 8 ./shell: 25: shell_nosuchfile: not found
|
/external/sepolicy/ |
shell.te | 1 type shell, domain; 3 domain_auto_trans(init, shell_exec, shell) 4 allow shell rootfs:dir r_dir_perms; 5 allow shell devpts:chr_file rw_file_perms; 6 allow shell tty_device:chr_file rw_file_perms; 7 allow shell console_device:chr_file rw_file_perms; 8 allow shell system_file:file x_file_perms; 9 allow shell shell_exec:file rx_file_perms; 10 allow shell zygote_exec:file rx_file_perms; 11 allow shell shell_data_file:dir create_dir_perms [all...] |
su.te | 3 domain_auto_trans(shell, su_exec, su)
|
/external/openssh/contrib/suse/ |
rc.config.sshd | 2 # Start the Secure Shell (SSH) Daemon?
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
SHELL | 3 $description = "Test proper handling of SHELL."; 5 # Find the default value when SHELL is not set. On UNIX it will be /bin/sh, 8 delete $ENV{SHELL}; 9 $mshell = `echo 'all:;\@echo \$(SHELL)' | $make_path -f-`; 12 # According to POSIX, the value of SHELL in the environment has no impact on 14 # Note %extraENV takes precedence over the default value for the shell. 16 $extraENV{SHELL} = '/dev/null'; 17 run_make_test('all:;@echo "$(SHELL)"', '', $mshell); 19 # According to POSIX, any value of SHELL set in the makefile should _NOT_ be 20 # exported to the subshell! I wanted to set SHELL to be $^X (perl) in th [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...] |
/system/core/rootdir/ |
init.trace.rc | 8 # Allow the shell group to enable (some) kernel tracing. 9 chown root shell /sys/kernel/debug/tracing/trace_clock 10 chown root shell /sys/kernel/debug/tracing/buffer_size_kb 11 chown root shell /sys/kernel/debug/tracing/options/overwrite 12 chown root shell /sys/kernel/debug/tracing/events/sched/sched_switch/enable 13 chown root shell /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable 14 chown root shell /sys/kernel/debug/tracing/events/power/cpu_frequency/enable 15 chown root shell /sys/kernel/debug/tracing/events/power/cpu_idle/enable 16 chown root shell /sys/kernel/debug/tracing/events/cpufreq_interactive/enable 17 chown root shell /sys/kernel/debug/tracing/tracing_o [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
shell | 3 $description = 'Test the $(shell ...) function.'; 10 all: ; @echo $(shell echo hi) 16 # the environment for a $(shell ...) call. 18 export HI = $(shell echo hi)
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
cv-vars.inp | 5 SHELL=bash
|
classes.inp | 5 SHELL=bash
|
/system/extras/tests/ext4/ |
android_emmc_perf_tests.sh | 15 if ! adb shell true >/dev/null 2>&1 20 HARDWARE=`adb shell getprop ro.hardware | tr -d "\r"` 62 adb shell stop 63 adb shell stop sdcard 64 adb shell stop ril-daemon 65 adb shell stop media 66 adb shell stop drm 67 adb shell stop keystore 68 adb shell stop tf_daemon 69 adb shell stop bluetooth [all...] |
/external/linux-tools-perf/config/ |
utilities.mak | 22 # GNU make's $(shell ...) function converts to a 42 # shell-escape-nl 44 # Usage: $(shell some-command | $(call shell-escape-nl[,escape])) 46 # Use this to escape newlines from within a shell call; 50 # in an `awk' program that is delimited by shell 54 define shell-escape-nl 58 # shell-unescape-nl 60 # Usage: $(shell some-command | $(call shell-unescape-nl[,escape]) [all...] |
/external/quake/ |
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
|
setupdevice.sh | 25 adb shell mkdir /data 26 adb shell mkdir /data/quake 27 adb shell mkdir /data/quake/id1
|
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
|
/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" )
|
/frameworks/base/data/etc/ |
platform.xml | 108 example, we give a wide variety of permissions to the shell user 109 since that is the user the adb shell runs under and developers and 113 <!-- Standard permissions granted to the shell. --> 114 <assign-permission name="android.permission.WRITE_EXTERNAL_STORAGE" uid="shell" /> 115 <assign-permission name="android.permission.SEND_SMS" uid="shell" /> 116 <assign-permission name="android.permission.CALL_PHONE" uid="shell" /> 117 <assign-permission name="android.permission.READ_CONTACTS" uid="shell" /> 118 <assign-permission name="android.permission.WRITE_CONTACTS" uid="shell" /> 119 <assign-permission name="android.permission.READ_CALENDAR" uid="shell" /> 120 <assign-permission name="android.permission.WRITE_CALENDAR" uid="shell" /> [all...] |
/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...] |
/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/dbus/test/ |
.gitignore | 23 shell-test 24 test-shell-service
|
/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" )
|