Searched defs:obj_file (Results 1 - 11 of 11) sorted by relevance

/external/lldb/source/Symbol/
H A DSymbolFile.cpp22 SymbolFile::FindPlugin (ObjectFile* obj_file) argument
25 if (obj_file != NULL)
29 // be with this new obj_file.
30 lldb::ModuleSP module_sp(obj_file->GetModule());
35 if (module_obj_file != obj_file)
39 obj_file->CreateSections (*module_sp->GetUnifiedSectionList());
51 std::unique_ptr<SymbolFile> curr_symfile_ap(create_callback(obj_file));
/external/lldb/include/lldb/Symbol/
H A DSymbolFile.h46 FindPlugin (ObjectFile* obj_file);
51 SymbolFile(ObjectFile* obj_file) : argument
52 m_obj_file(obj_file),
/external/lldb/source/Core/
H A DSection.cpp19 ObjectFile *obj_file,
31 m_obj_file (obj_file),
50 ObjectFile *obj_file,
62 m_obj_file (obj_file),
18 Section(const ModuleSP &module_sp, ObjectFile *obj_file, user_id_t sect_id, const ConstString &name, SectionType sect_type, addr_t file_addr, addr_t byte_size, lldb::offset_t file_offset, lldb::offset_t file_size, uint32_t flags) argument
48 Section(const lldb::SectionSP &parent_section_sp, const ModuleSP &module_sp, ObjectFile *obj_file, user_id_t sect_id, const ConstString &name, SectionType sect_type, addr_t file_addr, addr_t byte_size, lldb::offset_t file_offset, lldb::offset_t file_size, uint32_t flags) argument
H A DAddress.cpp1025 ObjectFile *obj_file = module_sp->GetObjectFile(); local
1026 if (obj_file)
1030 return obj_file->GetAddressClass (GetFileAddress());
H A DModule.cpp312 ObjectFile * obj_file = GetObjectFile (); local
314 if (obj_file != NULL)
316 obj_file->GetUUID(&m_uuid);
856 ObjectFile *obj_file = GetObjectFile (); local
857 if (obj_file != NULL)
1132 ObjectFile *obj_file = GetObjectFile(); local
1133 if (obj_file)
1134 obj_file->CreateSections(*GetUnifiedSectionList());
1264 ObjectFile *obj_file = symbol_file->GetObjectFile(); local
1265 if (obj_file)
1297 ObjectFile *obj_file = GetObjectFile(); local
1492 ObjectFile *obj_file = GetObjectFile(); local
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp214 ObjectFile *obj_file = module->GetObjectFile(); local
215 SectionList *sections = obj_file->GetSectionList();
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp58 SymbolFileSymtab::CreateInstance (ObjectFile* obj_file) argument
60 return new SymbolFileSymtab(obj_file);
69 SymbolFileSymtab::SymbolFileSymtab(ObjectFile* obj_file) : argument
70 SymbolFile(obj_file),
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp291 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); local
292 Address addr = obj_file->GetImageInfoAddress();
/external/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp340 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); local
341 Address addr = obj_file->GetImageInfoAddress();
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp286 SymbolFileDWARFDebugMap::CreateInstance (ObjectFile* obj_file) argument
288 return new SymbolFileDWARFDebugMap (obj_file);
473 ObjectFile *obj_file = GetObjectFile(); local
484 obj_file->GetModule()->ReportError ("debug map object file '%s' has changed (actual time is 0x%" PRIx64 ", debug map time is 0x%" PRIx64 ") since this executable was linked, file will be ignored",
508 comp_unit_info->oso_sp->module_sp.reset (new DebugMapModule (obj_file->GetModule(),
H A DSymbolFileDWARF.cpp225 SymbolFileDWARF::CreateInstance (ObjectFile* obj_file) argument
227 return new SymbolFileDWARF(obj_file);

Completed in 351 milliseconds