/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | spawn.py | 60 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 …]
|
D | sysconfig.py | 28 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/ |
D | test_subprocess.py | 60 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 …]
|
D | test_platform.py | 20 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)
|
D | test_sys.py | 173 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)])
|
D | script_helper.py | 19 cmd_line = [sys.executable] 59 cmd_line = [sys.executable, '-E'] 66 cmd_line = [sys.executable, '-E']
|
D | test_threading.py | 280 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],
|
D | test_quopri.py | 179 process = subprocess.Popen([sys.executable, "-mquopri"], 190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
|
D | test_popen.py | 16 python = sys.executable
|
D | test_sysconfig.py | 249 real = os.path.realpath(sys.executable) 279 sys.executable, '-c', 299 sys.executable, '-c',
|
D | test_site.py | 169 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/ |
D | build.py | 68 self.executable = None 117 if self.executable is None: 118 self.executable = os.path.normpath(sys.executable)
|
D | build_scripts.py | 34 self.executable = None 99 (self.executable,
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/ |
D | makefile.old | 49 @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/ |
D | test_build.py | 49 self.assertEqual(cmd.executable, os.path.normpath(sys.executable))
|
D | test_build_scripts.py | 50 executable=sys.executable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | platform.py | 141 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/ |
D | platform.py | 141 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)
|
D | CGIHTTPServer.py | 97 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/ |
D | sigchild_ignore.py | 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
|
/device/google/cuttlefish_common/common/libs/utils/ |
D | subprocess.h | 88 Command(const std::string& executable) { in Command() argument 89 command_.push_back(executable); in Command()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/ |
D | Pkcs7Sign.py | 160 Pkcs7ToolPath = sys.executable 186 Pkcs7ToolPath = sys.executable 232 Pkcs7ToolPath = sys.executable
|
/device/google/cuttlefish/shared/sepolicy/ |
D | system_server.te | 3 # 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/ |
D | memmap.xmm | 4 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/ |
D | win_add2path.py | 21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))
|