Home
last modified time | relevance | path

Searched refs:exe_spec (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp33 FileSpec exe_spec(resolved_info.GetExecutableFile()); in LaunchProcess() local
35 if (!fs.Exists(exe_spec)) in LaunchProcess()
36 FileSystem::Instance().Resolve(exe_spec); in LaunchProcess()
38 if (!fs.Exists(exe_spec)) in LaunchProcess()
39 FileSystem::Instance().ResolveExecutableLocation(exe_spec); in LaunchProcess()
41 if (!fs.Exists(exe_spec)) { in LaunchProcess()
43 exe_spec); in LaunchProcess()
47 resolved_info.SetExecutableFile(exe_spec, false); in LaunchProcess()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.cpp187 ModuleSpec exe_spec; in LocateExecutableObjectFile() local
188 exe_spec.GetFileSpec() = module_spec.GetFileSpec(); in LocateExecutableObjectFile()
189 exe_spec.GetUUID() = module_spec.GetUUID(); in LocateExecutableObjectFile()
191 module_sp.reset(new Module(exe_spec)); in LocateExecutableObjectFile()
193 module_sp->MatchesModuleSpec(exe_spec)) { in LocateExecutableObjectFile()
629 ModuleSpec exe_spec; in LocateMacOSXFilesUsingDebugSymbols() local
630 exe_spec.GetFileSpec() = module_spec.GetFileSpec(); in LocateMacOSXFilesUsingDebugSymbols()
631 exe_spec.GetUUID() = module_spec.GetUUID(); in LocateMacOSXFilesUsingDebugSymbols()
633 module_sp.reset(new Module(exe_spec)); in LocateMacOSXFilesUsingDebugSymbols()
635 module_sp->MatchesModuleSpec(exe_spec)) { in LocateMacOSXFilesUsingDebugSymbols()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp