Home
last modified time | relevance | path

Searched refs:shell (Results 1 – 25 of 1231) sorted by relevance

12345678910>>...50

/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_io.py52 shell = MockShell()
53 f = PseudoOutputFile(shell, 'stdout', 'utf-8')
66 shell = MockShell()
67 f = PseudoOutputFile(shell, 'stdout', 'utf-8')
75 shell = MockShell()
76 f = PseudoOutputFile(shell, 'stdout', 'utf-8')
78 self.assertEqual(shell.written, [('test', 'stdout')])
79 shell.reset()
81 self.assertEqual(shell.written, [('t\xe8st', 'stdout')])
82 shell.reset()
[all …]
Dtest_warning.py20 from idlelib import PyShell as shell unknown
54 shell.capture_warnings(True)
55 self.assertIs(warnings.showwarning, shell.idle_showwarning)
56 shell.capture_warnings(False)
61 s = shell.idle_formatwarning(
67 shell.idle_showwarning(
/external/v8/tools/testrunner/network/
Ddistro.py30 def __init__(self, shell): argument
31 self.shell = shell
57 shell = s.shell()
58 if not shell in shells:
59 shells[shell] = Shell(shell)
60 shells[shell].AddSuite(s)
70 for shell in shells:
71 while len(shell.tests) > 0:
76 "Remaining tests: %d. Going to slow mode." % len(shell.tests))
80 peers[0].ForceAddOneTest(shell.tests.pop(), shell)
[all …]
/external/libmojo/third_party/catapult/devil/devil/utils/
Dcmd_helper.py93 def Popen(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument
96 shell=shell, close_fds=True, env=env,
100 def Call(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument
101 pipe = Popen(args, stdout=stdout, stderr=stderr, shell=shell, cwd=cwd,
123 def GetCmdOutput(args, cwd=None, shell=False): argument
137 (_, output) = GetCmdStatusAndOutput(args, cwd, shell)
141 def _ValidateAndLogCommand(args, cwd, shell): argument
143 if not shell:
146 if shell:
157 def GetCmdStatusAndOutput(args, cwd=None, shell=False): argument
[all …]
/external/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 …]
/external/v8/tools/testrunner/objects/
Dpeer.py47 def AddTests(self, shell): argument
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.duration
62 def ForceAddOneTest(self, test, shell): argument
64 if shell.shell not in self.shells:
65 self.shells.add(shell.shell)
68 shell.total_duration -= test.duration
/external/chromium-trace/catapult/devil/devil/utils/
Dcmd_helper.py91 def Popen(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument
102 shell=shell, close_fds=close_fds, env=env, preexec_fn=preexec_fn)
105 def Call(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument
106 pipe = Popen(args, stdout=stdout, stderr=stderr, shell=shell, cwd=cwd,
128 def GetCmdOutput(args, cwd=None, shell=False): argument
142 (_, output) = GetCmdStatusAndOutput(args, cwd, shell)
146 def _ValidateAndLogCommand(args, cwd, shell): argument
148 if not shell:
151 if shell:
162 def GetCmdStatusAndOutput(args, cwd=None, shell=False): argument
[all …]
/external/valgrind/none/tests/scripts/
Dshell.stderr.exp-dash21 ./shell: 10: ./shell: ./x86/: Permission denied
2 ./shell: 13: ./shell: ./shell.vgtest: Permission denied
7 ./shell: 22: ./shell: ./shell_nosuchfile: not found
8 ./shell: 25: ./shell: shell_nosuchfile: not found
DMakefile.am13 shell shell.vgtest shell.stderr.exp shell.stderr.exp-dash \
14 shell.stdout.exp shell.stderr.exp-dash2 shell.stderr.exp-illumos \
15 shell.stderr.exp-solaris shell.stderr.exp-solaris-spawn \
Dshell.stderr.exp-solaris-spawn1 ./shell[10]: ./x86/: cannot execute [is a directory]
2 ./shell[13]: ./shell.vgtest: cannot execute [Permission denied]
3 ./shell[16]: ./shell_badinterp: not found [No such file or directory]
5 ./shell[22]: ./shell_nosuchfile: not found [No such file or directory]
6 ./shell[25]: shell_nosuchfile: not found [No such file or directory]
Dshell.stderr.exp-dash1 ./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
Dshell.stderr.exp-illumos1 ./shell[10]: ./x86/: cannot execute [is a directory]
2 ./shell[13]: ./shell.vgtest: cannot execute [Permission denied]
7 ./shell[22]: ./shell_nosuchfile: not found [No such file or directory]
8 ./shell[25]: shell_nosuchfile: not found [No such file or directory]
Dshell.stderr.exp-solaris1 ./shell[10]: ./x86/: cannot execute [is a directory]
2 ./shell[13]: ./shell.vgtest: cannot execute [Permission denied]
7 ./shell[22]: ./shell_nosuchfile: not found [No such file or directory]
8 ./shell[25]: shell_nosuchfile: not found [No such file or directory]
/external/toybox/toys/pending/
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()
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()
/external/skia/tools/skpbench/
D_hardware_nexus_6p.py29 self._adb.shell('''\
36 self._adb.shell('''\
46 self._adb.shell('''\
53 self._adb.shell('''\
67 self._adb.shell('''\
80 self._adb.shell('''\
89 self._adb.shell('''\
101 self._adb.shell('''\
107 self._adb.shell('''\
115 self._adb.shell('''\
/external/python/cpython2/Demo/tkinter/guido/
DShellWindow.py13 def __init__(self, master=None, shell=None, **cnf): argument
14 if not shell:
16 shell = os.environ['SHELL']
18 shell = '/bin/sh'
19 shell = shell + ' -i'
20 args = string.split(shell)
21 shell = args[0]
31 self.pid, self.fromchild, self.tochild = spawn(shell, args)
135 shell = string.join(sys.argv[1:])
138 if shell:
[all …]
/external/vulkan-validation-layers/demos/smoke/
DMain.cpp40 ShellXcb shell(*game); in main() local
41 shell.run(); in main()
55 ShellWayland shell(*game); in main() local
56 shell.run(); in main()
73 ShellAndroid shell(*app, *game); in android_main() local
74 shell.run(); in android_main()
91 ShellWin32 shell(*game); in main() local
92 shell.run(); in main()
/external/autotest/client/site_tests/graphics_GpuReset/src/
DMakefile13 CCFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm)
14 CCFLAGS += $(shell $(PKG_CONFIG) --cflags glib-2.0)
15 CCFLAGS += $(shell $(PKG_CONFIG) --cflags libudev)
16 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L libudev)
18 LDLIBS += $(shell $(PKG_CONFIG) --libs-only-l libudev)
19 INTEL_GPU := $(shell $(PKG_CONFIG) --exists libdrm_intel && echo "1" || echo "0")
22 LDLIBS += $(shell $(PKG_CONFIG) --libs-only-l libdrm_intel)
/external/skia/platform_tools/android/bin/
Dandroid_gdb_app21 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL sh…
23 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell
38 $ADB $DEVICE_SERIAL shell "am start -n ${activity} --es cmdLineFlags \"${APP_ARGS[*]:1}\""
44 PID=$($ADB shell ps | grep ${activityShort} | awk '{print $2}')
46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
Dandroid_gdbserver52 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld ${SYSTEM_LIBRARY_PATH}/${library_file}`
77 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
78 $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
83 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/${APP_ARGS[@]} &
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/LinuxX11/
DPVRShellOS.cpp516 int PVRShellInitOS::OpenX11Window(const PVRShell &shell) in OpenX11Window() argument
537 shell.PVRShellOutputDebug( "Unable to acquire visual" ); in OpenX11Window()
545 if(shell.m_pShellData->bFullScreen) in OpenX11Window()
555 …if ((modes[i]->hdisplay == shell.m_pShellData->nShellDimX) && (modes[i]->vdisplay == shell.m_pShel… in OpenX11Window()
565shell.PVRShellOutputDebug( "Chosen resolution for full screen mode does not match any modeline ava… in OpenX11Window()
611 …if((shell.m_pShellData->bFullScreen)&&((shell.m_pShellData->nShellDimX != display_width)||(shell.m… in OpenX11Window()
612shell.PVRShellOutputDebug( "Chosen resolution for full screen mode does not match available modeli… in OpenX11Window()
630 shell.m_pShellData->nShellPosX, // X position of window in OpenX11Window()
631 shell.m_pShellData->nShellPosY, // Y position of window in OpenX11Window()
632 shell.m_pShellData->nShellDimX, // Window width in OpenX11Window()
[all …]
/external/shflags/src/
Dshflags_test.sh88 for shell in ${shells}; do
98 if [ ! -x ${shell} ]; then
99 th_warn "unable to run tests with the ${shell} shell"
103 shell_name=`basename ${shell}`
104 shell_version=`versions_shellVersion "${shell}"`
114 ( exec ${shell} ./${suite} 2>&1; )
/external/lisa/
Dinit_env22 source ./src/shell/lisa_shell
24 echo "WARNING: Current shell is not a BASH"
25 # Check if a bash shell is available
28 # Switch to a BASH shell
31 echo "ERROR: A BASH shell is not available in PATH"
34 echo "The LISA shell requires a BASH shell."
/external/python/cpython2/Doc/library/
Dsubprocess.rst45 .. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False)
61 >>> subprocess.call("exit 1", shell=True)
66 Using ``shell=True`` can be a security hazard. See the warning
77 .. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False)
95 >>> subprocess.check_call("exit 1", shell=True)
104 Using ``shell=True`` can be a security hazard. See the warning
115 .. function:: check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False)
136 >>> subprocess.check_output("exit 1", shell=True)
147 ... shell=True)
154 Using ``shell=True`` can be a security hazard. See the warning
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShell.cpp1033 void PVRShellCommandLine::Apply(PVRShell &shell) in Apply() argument
1050 shell.PVRShellSet(prefWidth, atoi(val)); in Apply()
1054 shell.PVRShellSet(prefHeight, atoi(val)); in Apply()
1058 shell.PVRShellSet(prefAASamples, atoi(val)); in Apply()
1062 shell.PVRShellSet(prefFullScreen, (atoi(val) != 0)); in Apply()
1066 shell.PVRShellSet(prefSoftwareRendering, (atoi(val) != 0)); in Apply()
1070 shell.PVRShellSet(prefQuitAfterFrame, atoi(val)); in Apply()
1074 shell.PVRShellSet(prefQuitAfterTime, (float)atof(val)); in Apply()
1078 shell.PVRShellSet(prefPositionX, atoi(val)); in Apply()
1082 shell.PVRShellSet(prefPositionY, atoi(val)); in Apply()
[all …]

12345678910>>...50