Home
last modified time | relevance | path

Searched refs:executable (Results 1 – 25 of 145) sorted by relevance

123456

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dspawn.py60 executable = cmd[0]
64 executable = find_executable(executable) or executable
65 log.info(' '.join([executable] + cmd[1:]))
69 rc = os.spawnv(os.P_WAIT, executable, cmd)
80 executable = cmd[0]
83 executable = find_executable(executable) or executable
84 log.info(' '.join([executable] + cmd[1:]))
88 rc = os.spawnv(os.P_WAIT, executable, cmd)
151 def find_executable(executable, path=None): argument
160 base, ext = os.path.splitext(executable)
[all …]
Dsysconfig.py28 project_base = os.path.dirname(os.path.abspath(sys.executable))
77 buildir = os.path.dirname(sys.executable)
208 return os.path.join(os.path.dirname(sys.executable), "Makefile")
450 g['BINDIR'] = os.path.dirname(os.path.abspath(sys.executable))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_subprocess.py60 rc = subprocess.call([sys.executable, "-c",
66 rc = subprocess.check_call([sys.executable, "-c",
73 subprocess.check_call([sys.executable, "-c",
80 [sys.executable, "-c", "print 'BDFL'"])
87 [sys.executable, "-c", "import sys; sys.exit(5)"])
93 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
101 [sys.executable, "-c", "print 'will not be run'"],
110 rc = subprocess.call([sys.executable, "-c",
118 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
127 p = subprocess.Popen([sys.executable, "-c",
[all …]
Dtest_platform.py20 real = os.path.realpath(sys.executable)
222 if os.path.isdir(sys.executable) and \
223 os.path.exists(sys.executable+'.exe'):
225 executable = sys.executable + '.exe'
227 executable = sys.executable
228 res = platform.libc_ver(executable)
Dtest_sys.py173 rc = subprocess.call([sys.executable, "-c",
177 rc = subprocess.call([sys.executable, "-c",
182 process = subprocess.Popen([sys.executable, "-c", code],
382 self.assertIsInstance(sys.executable, basestring)
446 p = subprocess.Popen([sys.executable, "-c", 'print unichr(0xa2)'],
452 p = subprocess.Popen([sys.executable, "-c", 'print unichr(0xa2)'],
468 python_dir = os.path.dirname(os.path.realpath(sys.executable))
471 executable=sys.executable, stdout=subprocess.PIPE, cwd=python_dir)
472 executable = p.communicate()[0].strip()
474 self.assertIn(executable, ["''", repr(sys.executable)])
Dscript_helper.py19 cmd_line = [sys.executable]
59 cmd_line = [sys.executable, '-E']
66 cmd_line = [sys.executable, '-E']
Dtest_threading.py280 rc = subprocess.call([sys.executable, "-c", """if 1:
310 p = subprocess.Popen([sys.executable, "-c", """if 1:
344 p = subprocess.Popen([sys.executable, "-c", """if 1:
430 p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE)
502 p = subprocess.Popen([sys.executable, "-c", script],
717 p = subprocess.Popen([sys.executable, "-c", script],
Dtest_quopri.py179 process = subprocess.Popen([sys.executable, "-mquopri"],
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
Dtest_popen.py16 python = sys.executable
Dtest_sysconfig.py249 real = os.path.realpath(sys.executable)
279 sys.executable, '-c',
299 sys.executable, '-c',
Dtest_site.py169 rc = subprocess.call([sys.executable, '-c',
176 rc = subprocess.call([sys.executable, '-s', '-c',
183 rc = subprocess.call([sys.executable, '-c',
190 rc = subprocess.call([sys.executable, '-c',
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbuild.py68 self.executable = None
117 if self.executable is None:
118 self.executable = os.path.normpath(sys.executable)
Dbuild_scripts.py34 self.executable = None
99 (self.executable,
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
Dmakefile.old49 @echo antlr executable now in $(BINDIR)
51 @echo dlg executable now in $(BINDIR)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_build.py49 self.assertEqual(cmd.executable, os.path.normpath(sys.executable))
Dtest_build_scripts.py50 executable=sys.executable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dplatform.py141 def libc_ver(executable=sys.executable,lib='',version='', argument
162 executable = os.path.realpath(executable)
163 f = open(executable,'rb')
1077 def architecture(executable=sys.executable,bits='',linkage=''): argument
1110 if executable:
1111 output = _syscmd_file(executable, '')
1116 executable == sys.executable:
1616 libcname,libcversion = libc_ver(sys.executable)
1642 bits,linkage = architecture(sys.executable)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dplatform.py141 def libc_ver(executable=sys.executable,lib='',version='', argument
162 executable = os.path.realpath(executable)
163 f = open(executable,'rb')
1049 def architecture(executable=sys.executable,bits='',linkage=''): argument
1082 if executable:
1083 output = _syscmd_file(executable, '')
1088 executable == sys.executable:
1575 libcname,libcversion = libc_ver(sys.executable)
1601 bits,linkage = architecture(sys.executable)
DCGIHTTPServer.py97 return executable(path)
261 interp = sys.executable
359 def executable(path): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/subprocessdata/
Dsigchild_ignore.py6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
/device/google/cuttlefish_common/common/libs/utils/
Dsubprocess.h88 Command(const std::string& executable) { in Command() argument
89 command_.push_back(executable); in Command()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
DPkcs7Sign.py160 Pkcs7ToolPath = sys.executable
186 Pkcs7ToolPath = sys.executable
232 Pkcs7ToolPath = sys.executable
/device/google/cuttlefish/shared/sepolicy/
Dsystem_server.te3 # The current (at the time of writing) implementation of OpenGL needs to create executable memory.
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/hifi_hikey_lsp/
Dmemmap.xmm4 0xe8080000: instRam : iram0 : 0xc000 : executable, writable ;
33 0xc0000000: sysram : sram : 0x600000 : executable, writable ;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dwin_add2path.py21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))

123456