Searched refs:exe_module (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp35 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
36 if (exe_module) {
37 ObjectFile *object_file = exe_module->GetObjectFile();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp462 Module *exe_module = (*pos)->GetExecutableModulePointer(); local
464 if (exe_module) {
465 if (FileSpec::Match(exe_file_spec, exe_module->GetFileSpec())) {
467 if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()))
H A DTarget.cpp157 Module *exe_module = GetExecutableModulePointer(); local
158 if (exe_module)
159 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString());
2414 Module *exe_module = GetExecutableModulePointer(); local
2417 const bool has_primary_executable = exe_module && exe_module->GetObjectFile();
2419 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress();
2445 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\"",
H A DProcess.cpp2480 Module *exe_module = GetTarget().GetExecutableModulePointer();
2481 if (!exe_module) {
2488 exe_module->GetFileSpec().GetPath(local_exec_file_path,
2490 exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path,
2492 if (FileSystem::Instance().Exists(exe_module->GetFileSpec())) {
2503 error = WillLaunch(exe_module);
2511 error = DoLaunch(exe_module, launch_info);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectRegister.cpp261 if (auto *exe_module = target->GetExecutableModulePointer()) {
263 exe_module->GetTypeSystemForLanguage(eLanguageTypeC);
H A DFormatEntity.cpp1173 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
1174 if (exe_module) {
1175 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h66 DoLaunch(lldb_private::Module *exe_module,
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp150 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
151 if (exe_module)
152 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
998 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
1000 if (exe_module)
1001 exe_name = exe_module->GetFileSpec().GetFilename().AsCString();
H A DSBTarget.cpp371 Module *exe_module = target_sp->GetExecutableModulePointer(); local
372 if (exe_module)
373 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
422 Module *exe_module = target_sp->GetExecutableModulePointer(); local
423 if (exe_module)
424 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
576 Module *exe_module = target_sp->GetExecutableModulePointer(); local
577 if (exe_module)
578 exe_file_spec.SetFileSpec(exe_module->GetFileSpec());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp969 Module *exe_module = target->GetExecutableModulePointer(); variable
970 if (exe_module) {
971 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec();
976 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture();
H A DCommandObjectTarget.cpp64 Module *exe_module = target->GetExecutableModulePointer(); local
67 if (exe_module)
68 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1384 Module *exe_module = GetObjectFile()->GetModule().get(); local
1386 if (addr_module == exe_module)
1403 return exe_module->ResolveFileAddress(exe_file_addr, addr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h79 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
H A DProcessGDBRemote.cpp233 Module *exe_module = target_sp->GetExecutableModulePointer();
234 if (exe_module) {
235 ObjectFile *exe_objfile = exe_module->GetObjectFile();
251 return FileSystem::Instance().Exists(exe_module->GetFileSpec());
744 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module,
804 ObjectFile *object_file = exe_module->GetObjectFile();
941 exe_module->GetFileSpec().GetFilename().AsCString(),
942 exe_module->GetArchitecture().GetArchitectureName());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h996 /// Launch a new process by spawning a new process using \a exe_module's
1000 /// \param[in] exe_module
1011 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { argument

Completed in 315 milliseconds