Home
last modified time | relevance | path

Searched refs:exe_file (Results 1 – 25 of 30) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_site.py596 exe_file = os.path.join(temp_dir, os.path.split(sys.executable)[1])
599 shutil.copy(sys.executable, exe_file)
602 _pth_file = os.path.splitext(exe_file)[0] + '._pth'
608 return exe_file
628 exe_file = self._create_underpth_exe(pth_lines)
630 os.path.dirname(exe_file),
636 output = subprocess.check_output([exe_file, '-c',
650 exe_file = self._create_underpth_exe([
657 sys_prefix = os.path.dirname(exe_file)
661 rc = subprocess.call([exe_file, '-c',
[all …]
/external/python/cpython2/Lib/distutils/tests/
Dtest_bdist_wininst.py25 exe_file = cmd.get_exe_bytes()
26 self.assertGreater(len(exe_file), 10)
/external/python/cpython3/Lib/distutils/tests/
Dtest_bdist_wininst.py31 exe_file = cmd.get_exe_bytes()
32 self.assertGreater(len(exe_file), 10)
/external/harfbuzz_ng/test/fuzzing/
Drun-shape-fuzzer-tests.py19 exe_file = os.path.join (path, program)
20 if is_exe (exe_file):
21 return exe_file
Drun-subset-fuzzer-tests.py19 exe_file = os.path.join(path, program)
20 if is_exe(exe_file):
21 return exe_file
/external/llvm-project/lldb/test/API/tools/lldb-vscode/coreFile/
DTestVSCode_coreFile.py24 exe_file = os.path.join(current_dir, "linux-x86_64.out")
28 self.attach(exe_file, coreFile=core_file)
/external/harfbuzz_ng/test/subset/
Drun-tests.py29 exe_file = os.path.join (path, program)
30 if is_exe (exe_file):
31 return exe_file
/external/libchrome/base/process/
Dprocess_iterator.h39 const wchar_t* exe_file() const { return szExeFile; } in exe_file() function
50 const char* exe_file() const { return exe_file_.c_str(); }
Dprocess_iterator_linux.cc146 if (executable_name_ != entry().exe_file()) in IncludeEntry()
/external/llvm-project/lldb/source/API/
DSBAttachInfo.cpp116 void SBAttachInfo::SetExecutable(SBFileSpec exe_file) { in SetExecutable() argument
118 exe_file); in SetExecutable()
120 if (exe_file.IsValid()) in SetExecutable()
121 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable()
DSBLaunchInfo.cpp119 void SBLaunchInfo::SetExecutableFile(SBFileSpec exe_file, in SetExecutableFile() argument
122 (lldb::SBFileSpec, bool), exe_file, add_as_first_arg); in SetExecutableFile()
124 m_opaque_sp->SetExecutableFile(exe_file.ref(), add_as_first_arg); in SetExecutableFile()
/external/llvm-project/lldb/source/Utility/
DProcessInfo.cpp63 void ProcessInfo::SetExecutableFile(const FileSpec &exe_file, in SetExecutableFile() argument
65 if (exe_file) { in SetExecutableFile()
66 m_executable = exe_file; in SetExecutableFile()
69 exe_file.GetPath(filename); in SetExecutableFile()
/external/llvm-project/lldb/bindings/interface/
DSBAttachInfo.i34 SetExecutable (lldb::SBFileSpec exe_file);
DSBLaunchInfo.i41 SetExecutableFile (lldb::SBFileSpec exe_file, bool add_as_first_arg);
/external/llvm-project/lldb/include/lldb/API/
DSBAttachInfo.h73 void SetExecutable(lldb::SBFileSpec exe_file);
DSBLaunchInfo.h70 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.h80 bool SetCodeFile(const wstring &exe_file);
Dpdb_source_line_writer.cc166 bool PDBSourceLineWriter::SetCodeFile(const wstring &exe_file) { in SetCodeFile() argument
168 code_file_ = exe_file; in SetCodeFile()
173 return exe_file == code_file_; in SetCodeFile()
/external/llvm-project/lldb/utils/lui/
Dlldbutil.py40 exe_file = os.path.join(path, program)
41 if is_exe(exe_file):
42 return exe_file
/external/llvm-project/lldb/include/lldb/Utility/
DProcessInfo.h44 void SetExecutableFile(const FileSpec &exe_file,
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Ddotest.py69 exe_file = os.path.join(path, program)
70 if is_exe(exe_file):
71 return exe_file
Dlldbutil.py45 exe_file = os.path.join(path, program)
46 if is_exe(exe_file):
47 return exe_file
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwinKernel.cpp937 for (const auto &exe_file : in ExamineKextForMatchingUUID() local
939 if (FileSystem::Instance().Exists(exe_file)) { in ExamineKextForMatchingUUID()
940 ModuleSpec exe_spec(exe_file); in ExamineKextForMatchingUUID()
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/
DTestLinuxCore.py104 exe_file = self.getBuildArtifact("linux-x86_64-pid.out")
106 shutil.copyfile("linux-x86_64.out", exe_file)
/external/bcc/src/python/bcc/
D__init__.py264 exe_file = os.path.join(path, bin_path)
265 if is_exe(exe_file):
266 return exe_file

12