/external/python/cpython3/Lib/test/ |
D | test_site.py | 596 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/ |
D | test_bdist_wininst.py | 25 exe_file = cmd.get_exe_bytes() 26 self.assertGreater(len(exe_file), 10)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_bdist_wininst.py | 31 exe_file = cmd.get_exe_bytes() 32 self.assertGreater(len(exe_file), 10)
|
/external/harfbuzz_ng/test/fuzzing/ |
D | run-shape-fuzzer-tests.py | 19 exe_file = os.path.join (path, program) 20 if is_exe (exe_file): 21 return exe_file
|
D | run-subset-fuzzer-tests.py | 19 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/ |
D | TestVSCode_coreFile.py | 24 exe_file = os.path.join(current_dir, "linux-x86_64.out") 28 self.attach(exe_file, coreFile=core_file)
|
/external/harfbuzz_ng/test/subset/ |
D | run-tests.py | 29 exe_file = os.path.join (path, program) 30 if is_exe (exe_file): 31 return exe_file
|
/external/libchrome/base/process/ |
D | process_iterator.h | 39 const wchar_t* exe_file() const { return szExeFile; } in exe_file() function 50 const char* exe_file() const { return exe_file_.c_str(); }
|
D | process_iterator_linux.cc | 146 if (executable_name_ != entry().exe_file()) in IncludeEntry()
|
/external/llvm-project/lldb/source/API/ |
D | SBAttachInfo.cpp | 116 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()
|
D | SBLaunchInfo.cpp | 119 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/ |
D | ProcessInfo.cpp | 63 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/ |
D | SBAttachInfo.i | 34 SetExecutable (lldb::SBFileSpec exe_file);
|
D | SBLaunchInfo.i | 41 SetExecutableFile (lldb::SBFileSpec exe_file, bool add_as_first_arg);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBAttachInfo.h | 73 void SetExecutable(lldb::SBFileSpec exe_file);
|
D | SBLaunchInfo.h | 70 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);
|
/external/google-breakpad/src/common/windows/ |
D | pdb_source_line_writer.h | 80 bool SetCodeFile(const wstring &exe_file);
|
D | pdb_source_line_writer.cc | 166 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/ |
D | lldbutil.py | 40 exe_file = os.path.join(path, program) 41 if is_exe(exe_file): 42 return exe_file
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ProcessInfo.h | 44 void SetExecutableFile(const FileSpec &exe_file,
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | dotest.py | 69 exe_file = os.path.join(path, program) 70 if is_exe(exe_file): 71 return exe_file
|
D | lldbutil.py | 45 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/ |
D | PlatformDarwinKernel.cpp | 937 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/ |
D | TestLinuxCore.py | 104 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__.py | 264 exe_file = os.path.join(path, bin_path) 265 if is_exe(exe_file): 266 return exe_file
|