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

1 2 3 4 56 7 8 91011>>

  /external/v8/build/win/
message_compiler.py 21 # This needs shell=True to search the path in env_dict for the mc executable.
25 shell=True) variable
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
Makefile 42 DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1)
45 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
49 DBUS_INCLUDE += $(shell xml2-config --cflags)
50 DBUS_LIBS += $(shell xml2-config --libs)
  /tools/test/connectivity/acts/framework/acts/controllers/
native_android_device.py 95 pid = self.adb.shell(
98 self.adb.shell("kill {}".format(pid))
99 pid = self.adb.shell(
101 call(["adb -s " + self.serial + " shell sh -c \"/system/bin/sl4n\" &"],
102 shell=True)
  /tools/test/connectivity/acts/framework/tests/
acts_integration_test.py 27 subprocess.check_call([cmd], shell=True)
  /build/core/
goma.mk 30 ifeq ($(shell echo $$(($$(ulimit -u) < 2500 || $$(ulimit -n) < 16000))),1)
32 ifeq ($(shell uname),Darwin)
63 $(shell ( if ( curl http://localhost:$$($(GOMA_CC) port)/flagz | grep GOMA_HERMETIC=error ); then cmd=ensure_start; else cmd=restart; fi; GOMA_HERMETIC=error $(goma_ctl) $${cmd} ) &> /dev/null &)
  /external/vixl/tools/
util.py 46 def getstatusoutput(command, shell=False):
49 output = subprocess.check_output(args, stderr=subprocess.STDOUT, shell=shell)
  /packages/apps/TV/
version.mk 54 code_version_major := $(shell echo $$(($(base_version_major)+3)))
96 git_hash := $(shell git --git-dir $(LOCAL_PATH)/.git log -n 1 --pretty=format:%h)
97 date_string := $(shell date +%m%d%y_%H%M%S)
  /external/skia/platform_tools/android/bin/
android_perf 73 $ADB shell ps | grep skia_launcher | awk '{print $2}' | xargs $ADB shell kill
76 $ADB shell /data/local/tmp/skia_launcher ${runVars[@]} &
82 APP_PID=$($ADB shell ps | grep skia_launcher | awk '{print $2}')
83 $ADB shell perf record -p ${APP_PID} sleep 70
  /development/scripts/
gdbclient 11 # shell, but not functions (like gettop), so we need to source envsetup in here
17 local candidate=`adb shell getprop ro.hardware | tr -d '\r\n'`
20 candidate=`adb shell getprop ro.product.device | tr -d '\r\n'`
27 echo `adb shell cat /proc/$1/status | grep -e "^TracerPid:" | sed "s/^TracerPid:\t//" | tr -d '\r\n'`
101 local ID=`adb shell id -u`
107 local EXE=`adb shell readlink /proc/$PID/exe | tr -d '\r\n'`
151 local CPU_ABI=`adb shell getprop ro.product.cpu.abilist | tr -d '\r\n'`
162 adb shell gdbserver$USE64BIT :$PORT --attach $PID &
  /external/toybox/toys/pending/
useradd.c 15 usage: useradd [-SDH] [-h DIR] [-s SHELL] [-G GRP] [-g NAME] [-u UID] USER [GROUP]
24 -s SHELL Login shell
35 char *shell;
69 if (!TT.shell) {
70 TT.shell = getenv("SHELL");
72 if (!TT.shell) {
75 if (pw && pw->pw_shell && *pw->pw_shell) TT.shell = xstrdup(pw->pw_shell);
76 else TT.shell = "/bin/sh"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizard.java 29 import org.eclipse.swt.widgets.Shell;
164 // Get a shell to use for the SDK installation. There are cases where getActiveShell
167 Shell shell = display.getActiveShell(); local
168 if (shell == null) {
172 shell = window.getShell();
176 if (shell == null) {
177 shell = new Shell(display);
178 AdtPlugin.log(IStatus.WARNING, "No parent shell for SDK installation dialog")
    [all...]
  /external/libcap/
Make.Rules 16 lib=$(shell ldd /usr/bin/ld|egrep "ld-linux|ld.so"|cut -d/ -f2)
64 BUILD_GPERF := $(shell which gperf >/dev/null 2>/dev/null && echo yes)
70 PAM_CAP := $(shell if [ -f /usr/include/security/pam_modules.h ]; then echo yes ; else echo no ; fi)
71 INDENT := $(shell if [ -n "$$(which indent 2>/dev/null)" ]; then echo "| indent -kr" ; fi)
72 DYNAMIC := $(shell if [ ! -d "$(topdir)/.git" ]; then echo yes; fi)
  /hardware/intel/common/libva/test/common/
va_display_wayland.c 38 struct wl_shell *shell; member in struct:display
62 d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1);
120 if (d->shell) {
121 wl_shell_destroy(d->shell);
122 d->shell = NULL;
150 d->shell_surface = wl_shell_get_shell_surface(d->shell, d->surface);
  /external/iproute2/doc/
Makefile 12 SHELL=bash
16 HTMLFILES=$(subst .sgml,.html,$(shell echo *.sgml))
69 install -m 0644 $(shell echo *.tex) $(DESTDIR)$(DOCDIR)
70 install -m 0644 $(shell echo *.sgml) $(DESTDIR)$(DOCDIR)
  /external/selinux/policycoreutils/setfiles/
Makefile 6 AUDITH = $(shell ls /usr/include/libaudit.h 2>/dev/null)
8 PROGRESS_STEP=$(shell grep "^\#define STAR_COUNT" restore.h | awk -S '{ print $$3 }')
9 ABORT_ON_ERRORS=$(shell grep "^\#define ABORT_ON_ERRORS" setfiles.c | awk -S '{ print $$3 }')
  /external/v8/tools/testrunner/objects/
workpacket.py 50 for shell in self.peer.shells:
51 prefetched_binary = binaries_dict[shell]
52 binaries.append({"name": shell,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ExportScreenshotAction.java 26 import org.eclipse.swt.widgets.Shell;
45 Shell shell = AdtPlugin.getShell(); local
50 FileDialog dialog = new FileDialog(shell, SWT.SAVE);
79 MessageDialog.openError(shell, "Error", "Image not available");
  /art/tools/
symbolize.sh 46 # adb shell find seems to output in DOS format (CRLF), which messes up scripting
48 adb shell $@ | sed 's/\r$//'
  /build/kati/
fileutil.h 37 int RunCommand(const string& shell, const string& cmd,
  /external/ImageMagick/MagickWand/tests/
Makefile 3 SRC=$(shell pwd )/../..
  /external/autotest/client/bin/
autotest_client 25 exit_code = subprocess.call(cmd, shell=True, stderr=subprocess.STDOUT,
  /external/autotest/client/deps/iwcap/src/
Makefile 20 NL1FOUND := $(shell $(PKG_CONFIG) --atleast-version=1 libnl-1 && echo Y)
21 NL2FOUND := $(shell $(PKG_CONFIG) --atleast-version=2 libnl-2.0 && echo Y)
37 LIBS += $(shell $(PKG_CONFIG) --libs $(NLLIBNAME))
38 CFLAGS += $(shell $(PKG_CONFIG) --cflags $(NLLIBNAME))
  /external/autotest/client/site_tests/security_Minijail0/src/
mountns-enter.py 25 subprocess.check_call("umount %s" % tmpdir, shell=True)
  /external/autotest/contrib/
watch_expensive_rpcs.py 40 shell=True)
50 shell=True)
59 % (host, port), shell=True)
62 '"cat /proc/%s/cmdline"' % (host,proc_id), shell=True)
  /external/autotest/site_utils/
check_hung_proc.py 43 count = int(subprocess.check_output(cmd, shell = True))

Completed in 3007 milliseconds

1 2 3 4 56 7 8 91011>>