| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 38 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() local 39 if (exe_module) { in CreateInstance() 40 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanCallFunction.cpp | 69 Module *exe_module = GetTarget().GetExecutableModulePointer(); in ConstructorSetup() local 71 if (exe_module == nullptr) { in ConstructorSetup() 79 ObjectFile *objectFile = exe_module->GetObjectFile(); in ConstructorSetup() 83 exe_module->GetFileSpec().GetFilename().AsCString()); in ConstructorSetup() 95 exe_module->GetFileSpec().GetFilename().AsCString()); in ConstructorSetup()
|
| H A D | TargetList.cpp | 469 Module *exe_module = (*pos)->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local 471 if (exe_module) { in FindTargetWithExecutableAndArchitecture() 472 if (FileSpec::Equal(exe_file_spec, exe_module->GetFileSpec(), in FindTargetWithExecutableAndArchitecture() 475 if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture())) in FindTargetWithExecutableAndArchitecture()
|
| H A D | Process.cpp | 2725 Module *exe_module = GetTarget().GetExecutableModulePointer(); in Launch() local 2726 if (exe_module) { in Launch() 2729 exe_module->GetFileSpec().GetPath(local_exec_file_path, in Launch() 2731 exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path, in Launch() 2733 if (FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in Launch() 2744 error = WillLaunch(exe_module); in Launch() 2752 error = DoLaunch(exe_module, launch_info); in Launch()
|
| H A D | Target.cpp | 158 Module *exe_module = GetExecutableModulePointer(); in Dump() local 159 if (exe_module) in Dump() 160 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObjectRegister.cpp | 262 Module *exe_module = target->GetExecutableModulePointer(); in GetCompilerTypeImpl() local 263 if (exe_module) { in GetCompilerTypeImpl() 265 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
|
| H A D | FormatEntity.cpp | 1184 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local 1185 if (exe_module) { in Format() 1186 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBProcess.cpp | 134 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local 135 if (exe_module) in RemoteLaunch() 136 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch() 1113 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local 1115 if (exe_module) in GetDescription() 1116 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
|
| H A D | SBTarget.cpp | 333 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 334 if (exe_module) in Launch() 335 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 392 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 393 if (exe_module) in Launch() 394 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 582 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local 583 if (exe_module) in GetExecutable() 584 exe_file_spec.SetFileSpec(exe_module->GetFileSpec()); in GetExecutable()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | ProcessFreeBSD.h | 75 DoLaunch(lldb_private::Module *exe_module,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1038 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local 1039 if (exe_module) { in DoExecute() 1040 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute() 1045 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
|
| H A D | CommandObjectTarget.cpp | 68 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local 71 if (exe_module) in DumpTargetInfo() 72 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in DumpTargetInfo()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1390 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local 1392 if (addr_module == exe_module) in LinkOSOAddress() 1409 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 255 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 256 if (exe_module) { in CanDebug() 257 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 273 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug() 804 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument 863 ObjectFile *object_file = exe_module->GetObjectFile(); in DoLaunch() 1003 exe_module->GetFileSpec().GetFilename().AsCString(), in DoLaunch() 1004 exe_module->GetArchitecture().GetArchitectureName()); in DoLaunch()
|
| H A D | ProcessGDBRemote.h | 84 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Process.h | 1263 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument
|