Home
last modified time | relevance | path

Searched full:shell (Results 1 – 25 of 2242) sorted by relevance

12345678910>>...90

/third_party/rust/crates/clap/clap_complete/src/shells/
Dshell.rs11 /// Shell with auto-generated completion script available.
14 pub enum Shell { enum
15 /// Bourne Again SHell (bash)
17 /// Elvish shell
19 /// Friendly Interactive SHell (fish)
23 /// Z SHell (zsh)
27 impl Display for Shell { implementation
36 impl FromStr for Shell { implementation
50 impl ValueEnum for Shell { implementation
53 Shell::Bash, in value_variants()
[all …]
/third_party/musl/scripts/
Druntest_Windows.bat55 for /F "usebackq delims==" %%r in (`hdc shell param get const.product.cpu.abilist`) DO (
62 hdc shell rm -rf /data/tests/libc-test
63 hdc shell mkdir /data/tests
64 hdc shell mkdir %REMOTE%
67 hdc shell mkdir /tmp
68 hdc shell mkdir /dev/shm
79 hdc shell chmod +x %REMOTE%/src/*
81 hdc shell mount -o rw,remount /
82 hdc shell chmod 777 /etc
83 hdc shell cp /etc/ld-musl-namespace-%ARCH%.ini /etc/ld-musl-namespace-%ARCH%.ini.bak
[all …]
Druntest_linux.sh58 ABILIST=$(${CMD} shell param get const.product.cpu.abilist)
84 ${CMD} shell rm -rf ${REMOTE}
85 ${CMD} shell mkdir /data/tests
86 ${CMD} shell mkdir ${REMOTE}
89 ${CMD} shell mkdir /tmp
90 ${CMD} shell mkdir /dev/shm
100 ${CMD} shell chmod +x ${REMOTE}/src/*
101 ${CMD} shell mount -o rw,remount /
102 ${CMD} shell chmod 777 /etc
103 ${CMD} shell cp /etc/ld-musl-namespace-${ARCH}.ini /etc/ld-musl-namespace-${ARCH}.ini.bak
[all …]
Drun_libcgtest_windows.bat12 hdc_std shell mount -o remount,rw /
13 hdc_std shell mkdir "data/tmp"
14 hdc_std shell rm -rf %REMOTE_ROOT%
15 hdc_std shell mkdir %REMOTE_ROOT%
16 hdc_std shell mkdir %REMOTE%
17 hdc_std shell mkdir %RPATH_TEST_DIR%
18 hdc_std shell mkdir %NS_LIB_ONE_DIR%
19 hdc_std shell mkdir %NS_LIB_TWO_DIR%
20 hdc_std shell mkdir %NS_LIB_TWO_IMPL_DIR%
25 hdc_std shell chmod +x %REMOTE%
[all …]
Drun_libcgtest_linux.sh14 ${CMD} shell mount -o remount,rw /
15 ${CMD} shell mkdir data/tmp
16 ${CMD} shell rm -rf ${REMOTE_ROOT}
17 ${CMD} shell mkdir ${REMOTE_ROOT}
18 ${CMD} shell mkdir ${REMOTE}
19 ${CMD} shell mkdir ${RPATH_TEST_DIR}
20 ${CMD} shell mkdir ${NS_LIB_ONE_DIR}
21 ${CMD} shell mkdir ${NS_LIB_TWO_DIR}
22 ${CMD} shell mkdir ${NS_LIB_TWO_IMPL_DIR}
28 ${CMD} shell chmod +x ${REMOTE}
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py116 shell = MockShell()
117 f = run.StdInputFile(shell, 'stdin')
130 shell = MockShell()
131 f = run.StdInputFile(shell, 'stdin')
139 shell = MockShell()
140 f = run.StdInputFile(shell, 'stdin')
141 shell.push(['one\n', 'two\n', ''])
143 shell.push(['one\n', 'two\n', ''])
145 shell.push(['one\n', 'two\n', ''])
147 shell.push(['one\n', 'two\n', 'three\n', ''])
[all …]
/third_party/musl/Benchmark/scripts/
Drun_dlopen.sh20 $HDC shell "mount -o rw,remount /vendor"
21 $HDC shell "rm -rf /vendor/etc/soc_perf/*"
22 $HDC shell "echo 1700000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq"
23 $HDC shell "echo 2343000 > /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq"
24 $HDC shell "echo 3130000 > /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq"
25 $HDC shell "echo 4-7 > /dev/cpuset/top-app/cpuset.cpus"
26 $HDC shell "echo 4-7 > /dev/cpuset/graphic/cpuset.cpus"
28 $HDC shell "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq"
29 $HDC shell "cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq"
30 $HDC shell "cat /sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq"
[all …]
/third_party/iptables/
Diptables-1.8.7.tar.bz2./autogen.sh ./COMMIT_NOTES ./config.h ./configure.ac . ...
/third_party/toybox/toys/pending/
Dchsh.c1 /* chsh.c - Change login shell.
13 usage: chsh [-s SHELL] [USER]
15 Change user's login shell.
17 -s Use SHELL instead of prompting
19 Non-root users can only change their own shell to one listed in /etc/shells.
32 char *user, *line, *shell, *encrypted; local
56 // Get new shell (either -s or interactive)
58 if (toys.optflags) shell = TT.s;
60 xprintf("Changing the login shell for %s\n"
62 " Login shell [%s]: ", user, passwd_info->pw_shell);
[all …]
Dsulogin.c70 static void run_shell(char *shell) in run_shell() argument
72 snprintf(toybuf,sizeof(toybuf), "-%s", shell); in run_shell()
73 execl(shell, toybuf, NULL); in run_shell()
74 error_exit("Failed to spawn shell"); in run_shell()
84 "LD_AOUT_PRELOAD", "LD_NOWARN", "LD_KEEPDIR", "SHELL", NULL in sulogin_main()
86 char *shell = NULL, *pass = NULL, **temp = forbid; in sulogin_main() local
115 if ((shell = getenv("SUSHELL")) || (shell = getenv("sushell")) in sulogin_main()
116 || (shell = pwd->pw_shell)) in sulogin_main()
117 run_shell((shell && *shell)? shell: "/bin/sh"); in sulogin_main()
/third_party/libwebsockets/test-apps/android/app/src/main/jni/
DNativeLibs.mk187 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-gcc \
188 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-ar \
189 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-ranlib \
202 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-gcc \
203 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-ar \
204 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-ranlib \
217 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-gcc \
218 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-ar \
219 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-ranlib \
232 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_ARM_V7A)/bin/$(TOOLCHAIN_ARM_V7A_PREFIX)-gcc \
[all …]
/third_party/icu/icu4c/source/samples/
Ddefs.mk11 CC=$(shell icu-config --cc)
12 CXX=$(shell icu-config --cxx)
13 CPPFLAGS=$(shell icu-config --cppflags)
14 CFLAGS=$(shell icu-config --cflags)
15 CXXFLAGS=$(shell icu-config --cxxflags)
16 LDFLAGS =$^ $(shell icu-config --ldflags)
17 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
18 INVOKE=$(shell icu-config --invoke)
19 GENRB=$(shell icu-config --invoke=genrb)
21 PKGDATA=$(shell icu-config --invoke=pkgdata)
[all …]
/third_party/skia/third_party/externals/icu/source/samples/
Ddefs.mk11 CC=$(shell icu-config --cc)
12 CXX=$(shell icu-config --cxx)
13 CPPFLAGS=$(shell icu-config --cppflags)
14 CFLAGS=$(shell icu-config --cflags)
15 CXXFLAGS=$(shell icu-config --cxxflags)
16 LDFLAGS =$^ $(shell icu-config --ldflags)
17 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
18 INVOKE=$(shell icu-config --invoke)
19 GENRB=$(shell icu-config --invoke=genrb)
21 PKGDATA=$(shell icu-config --invoke=pkgdata)
[all …]
/third_party/node/test/parallel/
Dtest-child-process-spawnsync-shell.js9 // Verify that a shell is, in fact, executed
10 const doesNotExist = cp.spawnSync('does-not-exist', { shell: true }); property
27 const echo = cp.spawnSync('echo', ['foo'], { shell: true }); property
32 // Verify that shell features can be used
34 const command = cp.spawnSync(cmd, { shell: true }); property
41 shell: true property
46 // Verify that the shell internals work properly across platforms.
55 function test(testPlatform, shell, shellOutput) { argument
67 assert.strictEqual(opts.shell, shell);
74 cp.spawnSync(cmd, { shell }); field
[all …]
/third_party/python/Doc/library/
Didle.rst25 * Python shell window (interactive interpreter) with colorizing
42 IDLE has two main window types, the Shell window and the Editor window. It is
55 File menu (Shell and Editor)
76 tree structure. In the shell, open a module first.
105 Edit menu (Shell and Editor)
204 including lines within multiline strings. Except for Shell windows,
216 Do :ref:`Check Module <check-module>`. If no error, restart the shell to clean the
217 environment, then execute the module. Output is displayed in the Shell
219 When execution is complete, the Shell retains focus and displays a prompt.
229 on a command line. The module can be run in the Shell without restarting.
[all …]
/third_party/mksh/
Dmksh.1198 .Nd MirBSD Korn shell
220 is a command interpreter intended for both interactive and shell
224 shell language and largely compatible to the original Korn shell.
226 sometimes does take portable shell scripting or various standards
235 name to the shell; not all make sense, have been tested or work at all though.
244 Interactive shell.
245 A shell that reads commands from standard input is
251 An interactive shell has job control enabled, ignores the
272 Login shell.
273 If the name or basename the shell is called with (i.e. argv[0])
[all …]
Dmksh.faq5 <p>This <a href="@@RELPATH@@mksh.htm">shell</a> is spelt either
8 initial lowercase letter</a>; this is important) or “MirBSD Korn Shell”,
12 Shell”, although it is manageable, mostly for Slavic speakers, to actually
21 <p>mksh is a so-called (Unix) “shell” or “command interpreter”, similar to
25 also used to write so-called (shell) “script”s, short programs made by
27 <p>On Android, mksh is used as the system shell — basically, the one
40 for security reasons common on Unix systems which the shell is designed
50 have gotten this shell through komh’s port on Hobbes, or from his OS/2
56 Title: How does this relate to ksh or the Korn Shell?
58 <p>The Korn Shell (AT&amp;T ksh) was authored by David Korn; two major
[all …]
/third_party/musl/ndk-test/script/
Druntest_Windows.bat28 hdc shell mkdir %REMOTE%
31 @REM hdc shell mount -o rw,remount /
34 hdc shell mkdir /tmp
35 hdc shell mkdir /dev/shm
44 hdc shell mkdir %REMOTE%/%%~ni
47 hdc shell mkdir %REMOTE%/%%~ni/%%~ns
51 hdc shell chmod +x %REMOTE%/%%~ni/%%~ns/*
66 hdc shell chmod u+x %REMOTE%/runtest.sh
67 @REM hdc shell chmod u+x %REMOTE%/runtest-sanitize.sh
71 echo hdc shell .%REMOTE%/runtest.sh
[all …]
/third_party/openh264/autotest/performanceTest/android/
Drun_AutoTest_android.sh98 …#echo `$ADB -s $dev shell cat /system/build.prop |grep ro.product.model | awk -F"=" '{print $2}'`>…
113 pid=`$ADB -s $dev shell ps | grep logcat | awk '{print $2;}'`
114 [ "#$pid" != "#" ] && $ADB -s $dev shell kill $pid >/dev/null
117 $ADB -s $dev shell am start -n ${apk_main}
120 $ADB -s $dev shell ps | grep ${apk_id}
123 $ADB -s $dev shell ps | grep ${apk_id}
130 pid=`$ADB -s $dev shell ps | grep logcat | awk '{print $2;}'`
131 [ "#$pid" != "#" ] && $ADB -s $dev shell kill $pid >/dev/null
134 $ADB -s $dev shell rm -rf ${test_path}
142 pid=`$ADB -s $dev shell ps | grep logcat | awk '{print $2;}'`
[all …]
/third_party/mindspore/test/
DREADME.md9 ```shell
29 ```shell
30 hdc shell "mkdir /data/local/tmp/mindspore_test"
39 ```shell
40 hdc shell "chmod 755 /data/local/tmp/mindspore_test/MindSporeUnitTest"
41 hdc shell "/data/local/tmp/mindspore_test/MindSporeUnitTest"
55 ```shell
56 hdc shell "chmod 755 /data/local/tmp/mindspore_test/MindSporeUnitTest"
57 hdc shell "/data/local/tmp/mindspore_test/End2EndTest"
/third_party/ltp/tools/sparse/sparse-src/
DMakefile120 GCC_BASE := $(shell $(CC) --print-file-name=)
123 MULTIARCH_TRIPLET := $(shell $(CC) -print-multiarch 2>/dev/null)
137 HAVE_GCC_DEP:=$(shell touch .gcc-test.c && \
145 HAVE_LIBXML:=$(shell $(PKG_CONFIG) --exists libxml-2.0 2>/dev/null && echo 'yes')
149 c2xml-ldlibs := $(shell $(PKG_CONFIG) --libs libxml-2.0)
150 c2xml-cflags := $(shell $(PKG_CONFIG) --cflags libxml-2.0)
155 HAVE_SQLITE := $(shell $(PKG_CONFIG) --exists sqlite3 2>/dev/null && echo 'yes')
157 SQLITE_VERSION:=$(shell $(PKG_CONFIG) --modversion sqlite3)
158 SQLITE_VNUMBER:=$(shell printf '%d%02d%02d' $(subst ., ,$(SQLITE_VERSION)))
159 ifeq ($(shell expr "$(SQLITE_VNUMBER)" '>=' 32400),1)
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/
Dgit.go29 "../shell"
61 if err := shell.Shell(gitTimeout, exe, wd, "add", file); err != nil {
83 return shell.Shell(gitTimeout, exe, wd, args...)
111 return shell.Shell(gitTimeout, exe, wd, args...)
126 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {
147 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {
158 return shell.Shell(gitTimeout, exe, path, "checkout", commit.String())
163 return shell.Shell(gitTimeout, exe, dir, "apply", patch)
168 out, err := shell.Exec(gitTimeout, exe, "", nil, "ls-remote", url, ref)
193 …out, err := shell.Exec(gitTimeout, exe, "", nil, "log", at, "--pretty=format:"+prettyFormat, fmt.S…
[all …]
/third_party/skia/platform_tools/android/apps/skottie/
Drun_perf.sh23 adb shell input keyevent MENU
24 adb shell input keyevent MENU
25 adb shell setprop persist.traced.enable 1
26 adb shell setenforce 0
27 adb shell setprop debug.egl.traceGpuCompletion 1
28 adb shell am force-stop org.skia.skottie
40 adb shell am start -n org.skia.skottie/.PerfActivity --ei renderer ${renderer} --ei file ${file}
50 adb shell am start -n org.skia.skottie/.PerfActivity --ei renderer ${renderer} --ei file ${file}
54 adb shell am force-stop org.skia.skottie
/third_party/python/Tools/msi/tcltk/
Dtcltk_reg.wxs8 …<RegistryValue Root="HKCR" Key="Python.File\Shell\editwithidle$(var.PyTestExt)" Name="MUIVerb" Val…
9 …<RegistryValue Root="HKCR" Key="Python.File\Shell\editwithidle$(var.PyTestExt)" Name="Subcommands"…
13 …<RegistryValue Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.PyTestExt)" Name="MUIVerb…
14 …<RegistryValue Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.PyTestExt)" Name="Subcomm…
19 …<RegistryKey Root="HKCR" Key="Python.File\Shell\editwithidle\shell\edit$(var.MajorVersionNumber)$(…
26 …<RegistryKey Root="HKCR" Key="Python.NoConFile\Shell\editwithidle\shell\edit$(var.MajorVersionNumb…
34 …<RegistryKey Root="HKCR" Key="Python.File\Shell\editwithidle$(var.MajorVersionNumber)$(var.MinorVe…
41 …<RegistryKey Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.MajorVersionNumber)$(var.Mi…
/third_party/python/Lib/idlelib/
DNEWS2x.txt35 - help() was not paging to the shell. Issue1650.
42 - Shell was not colorizing due to bug introduced at r57998, Bug 1586.
152 Shell hotkey from 's' to 'l'.
160 - Retrieval of previous shell command was not always preserving indentation
265 - The GUI was hanging if the shell window was closed while a raw_input()
306 - Redirect the warning stream to the shell during the ScriptBinding check of
311 The pane no longer appears in the shell window. Added capability to limit
312 extensions to shell window or editor windows. Noam Raphael addition
345 - Print correct exception even if source file changed since shell was
370 - Added a banner to the shell discussing warnings possibly raised by personal
[all …]

12345678910>>...90