/external/lldb/source/Symbol/ |
SymbolFile.cpp | 22 SymbolFile::FindPlugin (ObjectFile* obj_file) 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/source/Plugins/SymbolVendor/ELF/ |
SymbolVendorELF.cpp | 89 ObjectFile *obj_file = module_sp->GetObjectFile(); 90 if (!obj_file) 94 ConstString obj_name = obj_file->GetPluginName(); 99 if (!obj_file->GetUUID (&uuid)) 103 FileSpecList file_spec_list = obj_file->GetDebugSymbolFilePaths(); 123 module_spec.GetFileSpec() = obj_file->GetFileSpec();
|
/external/lldb/include/lldb/Symbol/ |
SymbolFile.h | 46 FindPlugin (ObjectFile* obj_file); 51 SymbolFile(ObjectFile* obj_file) : 52 m_obj_file(obj_file),
|
/external/chromium_org/build/win/importlibs/ |
create_importlib_win.py | 127 obj_file = None 132 obj_file = self._CreateObj(dll_name, imports) 151 if obj_file: 152 cmdline.append(obj_file)
|
/external/lldb/source/Plugins/SymbolVendor/MacOSX/ |
SymbolVendorMacOSX.cpp | 129 ObjectFile * obj_file = module_sp->GetObjectFile(); 130 if (!obj_file) 134 ConstString obj_name = obj_file->GetPluginName(); 161 FileSpec file_spec = obj_file->GetFileSpec(); 291 symbol_vendor->AddSymbolFileRepresentation(obj_file->shared_from_this());
|
/external/lldb/source/Plugins/Process/Linux/ |
ProcessLinux.cpp | 72 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); 73 m_byte_order = obj_file->GetByteOrder();
|
/external/lldb/source/Plugins/SymbolFile/Symtab/ |
SymbolFileSymtab.cpp | 58 SymbolFileSymtab::CreateInstance (ObjectFile* obj_file) 60 return new SymbolFileSymtab(obj_file); 69 SymbolFileSymtab::SymbolFileSymtab(ObjectFile* obj_file) : 70 SymbolFile(obj_file),
|
SymbolFileSymtab.h | 36 CreateInstance (lldb_private::ObjectFile* obj_file); 41 SymbolFileSymtab(lldb_private::ObjectFile* obj_file);
|
/external/lldb/source/Core/ |
Module.cpp | 312 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 1264 ObjectFile *obj_file = symbol_file->GetObjectFile(); local 1297 ObjectFile *obj_file = GetObjectFile(); local 1492 ObjectFile *obj_file = GetObjectFile(); local [all...] |
Section.cpp | 19 ObjectFile *obj_file, 31 m_obj_file (obj_file), 50 ObjectFile *obj_file, 62 m_obj_file (obj_file),
|
Address.cpp | 1025 ObjectFile *obj_file = module_sp->GetObjectFile(); local [all...] |
/external/chromium_org/third_party/icu/source/test/depstest/ |
depstest.py | 105 obj_file = _obj_files[file_name] 106 imports |= obj_file["imports"] 107 exports |= obj_file["exports"]
|
/external/icu/icu4c/source/test/depstest/ |
depstest.py | 105 obj_file = _obj_files[file_name] 106 imports |= obj_file["imports"] 107 exports |= obj_file["exports"]
|
/external/lldb/include/lldb/ |
lldb-private-interfaces.h | 32 typedef SymbolFile* (*SymbolFileCreateInstance) (ObjectFile* obj_file);
|
/external/lldb/include/lldb/Core/ |
Section.h | 114 ObjectFile *obj_file, 127 ObjectFile *obj_file,
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
PlatformDarwin.cpp | 688 ObjectFile *obj_file = module_sp->GetObjectFile(); 689 if (!obj_file) 692 ObjectFile::Type obj_type = obj_file->GetType(); [all...] |
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
DynamicLoaderPOSIXDYLD.cpp | 214 ObjectFile *obj_file = module->GetObjectFile(); local 215 SectionList *sections = obj_file->GetSectionList();
|
/external/lldb/source/Plugins/Process/elf-core/ |
ProcessElfCore.cpp | 340 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); local 341 Address addr = obj_file->GetImageInfoAddress();
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
SymbolFileDWARFDebugMap.cpp | 286 SymbolFileDWARFDebugMap::CreateInstance (ObjectFile* obj_file) 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(), [all...] |
SymbolFileDWARFDebugMap.h | 51 CreateInstance (lldb_private::ObjectFile* obj_file);
|
DWARFDebugInfoEntry.cpp | [all...] |
SymbolFileDWARF.h | 85 CreateInstance (lldb_private::ObjectFile* obj_file);
|
SymbolFileDWARF.cpp | 225 SymbolFileDWARF::CreateInstance (ObjectFile* obj_file) 227 return new SymbolFileDWARF(obj_file); [all...] |
/external/lldb/source/Plugins/Process/POSIX/ |
ProcessPOSIX.cpp | 291 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); local 292 Address addr = obj_file->GetImageInfoAddress();
|