/external/lldb/source/Plugins/Platform/FreeBSD/ |
D | PlatformFreeBSD.cpp | 158 PlatformFreeBSD::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 167 FileSpec resolved_exe_file (exe_file); in ResolveExecutable() 175 exe_file.GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable() 186 exe_file.GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable() 194 error = m_remote_platform_sp->ResolveExecutable (exe_file, in ResolveExecutable() 211 exe_file.GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable() 233 exe_file.GetPath().c_str(), in ResolveExecutable() 268 exe_file.GetPath().c_str(), in ResolveExecutable() 277 exe_file.GetPath().c_str()); in ResolveExecutable()
|
D | PlatformFreeBSD.h | 75 ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
/external/lldb/source/Plugins/Platform/Linux/ |
D | PlatformLinux.cpp | 149 PlatformLinux::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 158 FileSpec resolved_exe_file (exe_file); in ResolveExecutable() 166 exe_file.GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable() 177 exe_file.GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable() 185 error = m_remote_platform_sp->ResolveExecutable (exe_file, in ResolveExecutable() 240 exe_file.GetPath().c_str(), in ResolveExecutable() 274 exe_file.GetPath().c_str(), in ResolveExecutable()
|
D | PlatformLinux.h | 61 ResolveExecutable (const FileSpec &exe_file,
|
/external/lldb/utils/test/ |
D | llvm-mc-shell.py | 24 exe_file = os.path.join(path, program) 25 if is_exe(exe_file): 26 return exe_file
|
D | run-until-faulted.py | 24 exe_file = os.path.join(path, program) 25 if is_exe(exe_file): 26 return exe_file
|
D | disasm.py | 25 exe_file = os.path.join(path, program) 26 if is_exe(exe_file): 27 return exe_file
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformiOSSimulator.cpp | 174 PlatformiOSSimulator::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 182 FileSpec resolved_exe_file (exe_file); in ResolveExecutable() 239 exe_file.GetPath().c_str(), in ResolveExecutable() 247 exe_file.GetPath().c_str()); in ResolveExecutable()
|
D | PlatformDarwin.cpp | 126 PlatformDarwin::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 135 FileSpec resolved_exe_file (exe_file); in ResolveExecutable() 143 exe_file.GetPath (exe_path, sizeof(exe_path)); in ResolveExecutable() 157 exe_file.GetPath (exe_path, sizeof(exe_path)); in ResolveExecutable() 165 error = m_remote_platform_sp->ResolveExecutable (exe_file, in ResolveExecutable() 200 exe_file.GetPath().c_str(), in ResolveExecutable() 234 exe_file.GetPath().c_str(), in ResolveExecutable()
|
D | PlatformDarwinKernel.cpp | 624 FileSpec exe_file = kext_bundle_path; in ExamineKextForMatchingUUID() local 625 Host::ResolveExecutableInBundle (exe_file); in ExamineKextForMatchingUUID() 626 if (exe_file.Exists()) in ExamineKextForMatchingUUID() 628 ModuleSpec exe_spec (exe_file); in ExamineKextForMatchingUUID() 635 ModuleSP module_sp (new Module (exe_file, arch)); in ExamineKextForMatchingUUID()
|
D | PlatformRemoteiOS.cpp | 211 PlatformRemoteiOS::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 219 FileSpec resolved_exe_file (exe_file); in ResolveExecutable() 276 exe_file.GetPath().c_str(), in ResolveExecutable() 284 exe_file.GetPath().c_str()); in ResolveExecutable()
|
D | PlatformiOSSimulator.h | 68 ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
D | PlatformRemoteiOS.h | 70 ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
D | PlatformDarwin.h | 31 ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
/external/lldb/source/Target/ |
D | Platform.cpp | 477 Platform::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument 483 if (exe_file.Exists()) in ResolveExecutable() 485 ModuleSpec module_spec (exe_file, exe_arch); in ResolveExecutable() 515 exe_file.GetPath().c_str()); in ResolveExecutable()
|
/external/google-breakpad/src/common/windows/ |
D | pdb_source_line_writer.h | 111 bool SetCodeFile(const wstring &exe_file);
|
D | pdb_source_line_writer.cc | 132 bool PDBSourceLineWriter::SetCodeFile(const wstring &exe_file) { in SetCodeFile() argument 134 code_file_ = exe_file; in SetCodeFile() 139 return exe_file == code_file_; in SetCodeFile()
|
/external/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.h | 67 ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
D | PlatformRemoteGDBServer.cpp | 104 PlatformRemoteGDBServer::ResolveExecutable (const FileSpec &exe_file, in ResolveExecutable() argument
|
/external/lldb/test/ |
D | lldbutil.py | 27 exe_file = os.path.join(path, program) 28 if is_exe(exe_file): 29 return exe_file
|
D | dotest.py | 66 exe_file = os.path.join(path, program) 67 if is_exe(exe_file): 68 return exe_file
|
D | lldbtest.py | 196 exe_file = os.path.join(path, program) 197 if is_exe(exe_file): 198 return exe_file
|
/external/lldb/include/lldb/Target/ |
D | Process.h | 170 SetExecutableFile (const FileSpec &exe_file, bool add_exe_file_as_first_arg) in SetExecutableFile() argument 172 if (exe_file) in SetExecutableFile() 174 m_executable = exe_file; in SetExecutableFile() 178 if (exe_file.GetPath(filename, sizeof(filename))) in SetExecutableFile()
|
D | Platform.h | 133 ResolveExecutable (const FileSpec &exe_file,
|
/external/lldb/include/lldb/API/ |
D | SBTarget.h | 148 SetExecutable (lldb::SBFileSpec exe_file);
|