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

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp49 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
50 if (exe_module) {
51 ObjectFile *object_file = exe_module->GetObjectFile();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h49 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
H A DScriptedProcess.cpp165 Status ScriptedProcess::DoLaunch(Module *exe_module, argument
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DValueObjectRegister.cpp200 if (auto *exe_module = target->GetExecutableModulePointer()) {
202 exe_module->GetTypeSystemForLanguage(eLanguageTypeC);
H A DFormatEntity.cpp1227 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
1228 if (exe_module) {
1229 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number))
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp386 Module *exe_module = item->GetExecutableModulePointer();
387 if (!exe_module ||
388 !FileSpec::Match(exe_file_spec, exe_module->GetFileSpec()))
392 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture());
H A DTarget.cpp168 Module *exe_module = GetExecutableModulePointer(); local
169 if (exe_module)
170 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString());
2773 Module *exe_module = GetExecutableModulePointer(); local
2776 const bool has_primary_executable = exe_module && exe_module->GetObjectFile();
2778 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress();
2804 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\"",
H A DProcess.cpp2512 Module *exe_module = GetTarget().GetExecutableModulePointer();
2522 if (!exe_module) {
2529 exe_spec_to_use = exe_module->GetFileSpec();
2531 if (exe_module && FileSystem::Instance().Exists(exe_module->GetFileSpec())) {
2548 error = WillLaunch(exe_module);
2560 error = DoLaunch(exe_module, launch_info);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp137 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
139 if (!is_kernel(exe_module))
142 ObjectFile *exe_objfile = exe_module->GetObjectFile();
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp143 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
144 if (exe_module)
145 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
940 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
942 if (exe_module)
943 exe_name = exe_module->GetFileSpec().GetFilename().AsCString();
H A DSBTarget.cpp273 if (Module *exe_module = target_sp->GetExecutableModulePointer())
274 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(),
354 Module *exe_module = target_sp->GetExecutableModulePointer(); local
355 if (exe_module)
356 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
411 Module *exe_module = target_sp->GetExecutableModulePointer(); local
412 if (exe_module)
413 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
558 Module *exe_module = target_sp->GetExecutableModulePointer(); local
559 if (exe_module)
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1161 Module *exe_module = target->GetExecutableModulePointer(); variable
1162 if (exe_module) {
1163 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec();
1168 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture();
H A DCommandObjectTarget.cpp80 Module *exe_module = target->GetExecutableModulePointer(); local
83 if (exe_module)
84 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path));
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1463 Module *exe_module = GetObjectFile()->GetModule().get(); local
1465 if (addr_module == exe_module)
1482 return exe_module->ResolveFileAddress(exe_file_addr, addr);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h86 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
H A DProcessGDBRemote.cpp227 Module *exe_module = target_sp->GetExecutableModulePointer();
228 if (exe_module) {
229 ObjectFile *exe_objfile = exe_module->GetObjectFile();
245 return FileSystem::Instance().Exists(exe_module->GetFileSpec());
615 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1078 /// Launch a new process by spawning a new process using \a exe_module's
1082 /// \param[in] exe_module
1093 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { argument

Completed in 317 milliseconds