Home
last modified time | relevance | path

Searched refs:exe_module (Results 1 – 25 of 25) sorted by relevance

/external/lldb/test/python_api/module_section/
DTestModuleAndSection.py50 exe_module = target.GetModuleAtIndex(0)
52 print "Exe module: %s" % str(exe_module)
53 print "Number of sections: %d" % exe_module.GetNumSections()
56 for sec in exe_module.section_iter():
60 for sym in exe_module.symbol_in_section_iter(sec):
67 for sym in exe_module.symbol_in_section_iter(subsec):
87 exe_module = target.GetModuleAtIndex(0)
89 print "Exe module: %s" % str(exe_module)
90 print "Number of sections: %d" % exe_module.GetNumSections()
93 exe_module.FindFirstType(None)
[all …]
/external/lldb/source/Plugins/DynamicLoader/Static/
DDynamicLoaderStatic.cpp40 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() local
41 if (exe_module) in CreateInstance()
43 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance()
/external/lldb/source/Target/
DThreadPlanCallFunction.cpp77 Module *exe_module = target_sp->GetExecutableModulePointer(); in ConstructorSetup() local
79 if (exe_module == NULL) in ConstructorSetup()
88 ObjectFile *objectFile = exe_module->GetObjectFile(); in ConstructorSetup()
92 exe_module->GetFileSpec().GetFilename().AsCString()); in ConstructorSetup()
103 exe_module->GetFileSpec().GetFilename().AsCString()); in ConstructorSetup()
DThreadPlanTracer.cpp135 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetIntPointerType() local
137 if (exe_module) in GetIntPointerType()
139 …m_intptr_type = TypeFromUser(exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize(… in GetIntPointerType()
DTargetList.cpp371 Module *exe_module = (*pos)->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local
373 if (exe_module) in FindTargetWithExecutableAndArchitecture()
375 if (FileSpec::Equal (exe_file_spec, exe_module->GetFileSpec(), full_match)) in FindTargetWithExecutableAndArchitecture()
379 if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture())) in FindTargetWithExecutableAndArchitecture()
DProcess.cpp2851 Module *exe_module = m_target.GetExecutableModulePointer(); in Launch() local
2852 if (exe_module) in Launch()
2856 exe_module->GetFileSpec().GetPath(local_exec_file_path, sizeof(local_exec_file_path)); in Launch()
2857exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path, sizeof(platform_exec_file_path)… in Launch()
2858 if (exe_module->GetFileSpec().Exists()) in Launch()
2863 error = WillLaunch (exe_module); in Launch()
2873 error = DoLaunch (exe_module, launch_info); in Launch()
DTarget.cpp133 Module *exe_module = GetExecutableModulePointer(); in Dump() local
134 if (exe_module) in Dump()
135 s->PutCString (exe_module->GetFileSpec().GetFilename().GetCString()); in Dump()
/external/lldb/test/macosx/debug-info/apple_types/
DTestAppleTypesIsProduced.py57 exe_module = target.GetModuleAtIndex(0)
59 dwarf_section = exe_module.FindSection("__DWARF")
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp142 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() local
143 if (exe_module) in CreateInstance()
145 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance()
220 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in SearchForKernelAtSameLoadAddr() local
221 if (exe_module == NULL) in SearchForKernelAtSameLoadAddr()
224 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in SearchForKernelAtSameLoadAddr()
234 …mageAtAddress (exe_objfile->GetHeaderAddress().GetFileAddress(), process) == exe_module->GetUUID()) in SearchForKernelAtSameLoadAddr()
715 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); in ReadMemoryModule() local
716 if (exe_module && exe_module->GetUUID().IsValid()) in ReadMemoryModule()
718 if (m_uuid != exe_module->GetUUID()) in ReadMemoryModule()
[all …]
/external/lldb/source/Core/
DValueObjectRegister.cpp313 Module *exe_module = target->GetExecutableModulePointer(); in GetClangTypeImpl() local
314 if (exe_module) in GetClangTypeImpl()
316 …m_clang_type = exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize (m_reg_info.en… in GetClangTypeImpl()
DDebugger.cpp1899 … Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in FormatPromptRecurse() local
1900 if (exe_module) in FormatPromptRecurse()
1904 … format_file_spec.GetFilename() = exe_module->GetFileSpec().GetFilename(); in FormatPromptRecurse()
1909 format_file_spec = exe_module->GetFileSpec(); in FormatPromptRecurse()
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp144 Module *exe_module = target.GetExecutableModulePointer(); in CanDebug() local
145 if (exe_module) in CanDebug()
155 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug()
360 ProcessKDP::DoLaunch (Module *exe_module, in DoLaunch() argument
DProcessKDP.h87 DoLaunch (lldb_private::Module *exe_module,
/external/lldb/source/Commands/
DCommandObjectPlatform.cpp409 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local
410 if (exe_module) in DoExecute()
412 m_options.launch_info.GetExecutableFile () = exe_module->GetFileSpec(); in DoExecute()
416 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
DCommandObjectProcess.cpp193 const Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local
195 if (exe_module == NULL) in DoExecute()
210 exe_module->GetFileSpec().GetPath (filename, sizeof(filename)); in DoExecute()
215 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), false); in DoExecute()
219 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in DoExecute()
298 const char *archname = exe_module->GetArchitecture().GetArchitectureName(); in DoExecute()
DCommandObjectTarget.cpp65 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local
68 if (exe_module) in DumpTargetInfo()
69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path)); in DumpTargetInfo()
/external/lldb/source/API/
DSBProcess.cpp174 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local
175 if (exe_module) in RemoteLaunch()
176 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch()
1169 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local
1171 if (exe_module) in GetDescription()
1172 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
DSBTarget.cpp693 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local
694 if (exe_module) in Launch()
695 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
785 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local
786 if (exe_module) in Launch()
787 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
1204 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local
1205 if (exe_module) in GetExecutable()
1206 exe_file_spec.SetFileSpec (exe_module->GetFileSpec()); in GetExecutable()
/external/lldb/source/Plugins/Process/POSIX/
DProcessPOSIX.h60 DoLaunch (lldb_private::Module *exe_module,
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp212 Module *exe_module = target.GetExecutableModulePointer(); in CanDebug() local
213 if (exe_module) in CanDebug()
215 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug()
231 return exe_module->GetFileSpec().Exists(); in CanDebug()
602 ProcessGDBRemote::DoLaunch (Module *exe_module, const ProcessLaunchInfo &launch_info) in DoLaunch() argument
637 ObjectFile * object_file = exe_module->GetObjectFile(); in DoLaunch()
782 exe_module->GetFileSpec().GetFilename().AsCString(), in DoLaunch()
783 exe_module->GetArchitecture().GetArchitectureName()); in DoLaunch()
DProcessGDBRemote.h88 DoLaunch (lldb_private::Module *exe_module,
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOSXDYLD.cpp102 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() local
103 if (exe_module) in CreateInstance()
105 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.cpp1527 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local
1529 if (addr_module == exe_module) in LinkOSOAddress()
1544 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
/external/lldb/examples/python/
Dcrashlog.py634 exe_module = target.GetModuleAtIndex(0)
/external/lldb/include/lldb/Target/
DProcess.h2209 DoLaunch (Module *exe_module, in DoLaunch() argument