/external/google-breakpad/src/common/linux/ |
D | dump_symbols.cc | 367 bool LoadELF(const string& obj_file, MmapWrapper* map_wrapper, in LoadELF() argument 369 int obj_fd = open(obj_file.c_str(), O_RDONLY); in LoadELF() 372 obj_file.c_str(), strerror(errno)); in LoadELF() 379 obj_file.c_str(), strerror(errno)); in LoadELF() 386 obj_file.c_str(), strerror(errno)); in LoadELF() 392 fprintf(stderr, "Not a valid ELF file: %s\n", obj_file.c_str()); in LoadELF() 430 const string& obj_file, in ReadDebugLink() argument 443 if (!realpath(obj_file.c_str(), obj_file_abspath)) { in ReadDebugLink() 444 fprintf(stderr, "Cannot resolve absolute path for %s\n", obj_file.c_str()); in ReadDebugLink() 501 obj_file.c_str()); in ReadDebugLink() [all …]
|
D | dump_symbols.h | 65 bool WriteSymbolFile(const string &obj_file, 73 bool ReadSymbolData(const string& obj_file,
|
D | dump_symbols_unittest.cc | 50 bool ReadSymbolDataInternal(const uint8_t* obj_file,
|
/external/lldb/source/Symbol/ |
D | SymbolFile.cpp | 22 SymbolFile::FindPlugin (ObjectFile* obj_file) in FindPlugin() argument 25 if (obj_file != NULL) in FindPlugin() 30 lldb::ModuleSP module_sp(obj_file->GetModule()); in FindPlugin() 35 if (module_obj_file != obj_file) in FindPlugin() 39 obj_file->CreateSections (*module_sp->GetUnifiedSectionList()); in FindPlugin() 51 std::unique_ptr<SymbolFile> curr_symfile_ap(create_callback(obj_file)); in FindPlugin()
|
/external/lldb/source/Plugins/SymbolVendor/ELF/ |
D | SymbolVendorELF.cpp | 89 ObjectFile *obj_file = module_sp->GetObjectFile(); in CreateInstance() local 90 if (!obj_file) in CreateInstance() 94 ConstString obj_name = obj_file->GetPluginName(); in CreateInstance() 99 if (!obj_file->GetUUID (&uuid)) in CreateInstance() 103 FileSpecList file_spec_list = obj_file->GetDebugSymbolFilePaths(); in CreateInstance() 123 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
|
/external/lldb/source/Plugins/SymbolVendor/MacOSX/ |
D | SymbolVendorMacOSX.cpp | 129 ObjectFile * obj_file = module_sp->GetObjectFile(); in CreateInstance() local 130 if (!obj_file) in CreateInstance() 134 ConstString obj_name = obj_file->GetPluginName(); in CreateInstance() 161 FileSpec file_spec = obj_file->GetFileSpec(); in CreateInstance() 291 symbol_vendor->AddSymbolFileRepresentation(obj_file->shared_from_this()); in CreateInstance()
|
/external/v8/build/win/importlibs/ |
D | 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/google-breakpad/src/common/solaris/ |
D | dump_symbols.cc | 482 bool WriteModuleInfo(int fd, GElf_Half arch, const std::string &obj_file) { in WriteModuleInfo() argument 496 google_breakpad::FileID file_id(obj_file.c_str()); in WriteModuleInfo() 501 std::string filename = obj_file; in WriteModuleInfo() 502 size_t slash_pos = obj_file.find_last_of("/"); in WriteModuleInfo() 504 filename = obj_file.substr(slash_pos + 1); in WriteModuleInfo() 639 bool DumpSymbols::WriteSymbolFile(const std::string &obj_file, int sym_fd) { in WriteSymbolFile() argument 645 int obj_fd = open(obj_file.c_str(), O_RDONLY); in WriteSymbolFile() 674 if (WriteModuleInfo(sym_fd, elf_header.e_machine, obj_file) && in WriteSymbolFile()
|
D | dump_symbols.h | 43 bool WriteSymbolFile(const std::string &obj_file,
|
/external/lldb/include/lldb/Symbol/ |
D | SymbolFile.h | 46 FindPlugin (ObjectFile* obj_file); 51 SymbolFile(ObjectFile* obj_file) : in SymbolFile() argument 52 m_obj_file(obj_file), in SymbolFile()
|
/external/lldb/source/Core/ |
D | Module.cpp | 312 ObjectFile * obj_file = GetObjectFile (); in GetUUID() local 314 if (obj_file != NULL) in GetUUID() 316 obj_file->GetUUID(&m_uuid); in GetUUID() 856 ObjectFile *obj_file = GetObjectFile (); in GetSymbolVendor() local 857 if (obj_file != NULL) in GetSymbolVendor() 1132 ObjectFile *obj_file = GetObjectFile(); in GetSectionList() local 1133 if (obj_file) in GetSectionList() 1134 obj_file->CreateSections(*GetUnifiedSectionList()); in GetSectionList() 1264 ObjectFile *obj_file = symbol_file->GetObjectFile(); in SetSymbolFileFileSpec() local 1265 if (obj_file) in SetSymbolFileFileSpec() [all …]
|
D | Section.cpp | 19 ObjectFile *obj_file, in Section() argument 31 m_obj_file (obj_file), in Section() 50 ObjectFile *obj_file, in Section() argument 62 m_obj_file (obj_file), in Section()
|
D | Address.cpp | 1025 ObjectFile *obj_file = module_sp->GetObjectFile(); in GetAddressClass() local 1026 if (obj_file) in GetAddressClass() 1030 return obj_file->GetAddressClass (GetFileAddress()); in GetAddressClass()
|
/external/lldb/source/Plugins/SymbolFile/Symtab/ |
D | SymbolFileSymtab.cpp | 58 SymbolFileSymtab::CreateInstance (ObjectFile* obj_file) in CreateInstance() argument 60 return new SymbolFileSymtab(obj_file); in CreateInstance() 69 SymbolFileSymtab::SymbolFileSymtab(ObjectFile* obj_file) : in SymbolFileSymtab() argument 70 SymbolFile(obj_file), in SymbolFileSymtab()
|
D | SymbolFileSymtab.h | 36 CreateInstance (lldb_private::ObjectFile* obj_file); 41 SymbolFileSymtab(lldb_private::ObjectFile* obj_file);
|
/external/icu/icu4c/source/test/depstest/ |
D | depstest.py | 107 obj_file = _obj_files[file_name] 108 imports |= obj_file["imports"] 109 exports |= obj_file["exports"]
|
/external/lldb/source/Plugins/Process/Linux/ |
D | ProcessLinux.cpp | 72 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); in ProcessLinux() 73 m_byte_order = obj_file->GetByteOrder(); in ProcessLinux()
|
/external/lldb/include/lldb/Core/ |
D | Section.h | 114 ObjectFile *obj_file, 127 ObjectFile *obj_file,
|
/external/lldb/include/lldb/ |
D | lldb-private-interfaces.h | 32 typedef SymbolFile* (*SymbolFileCreateInstance) (ObjectFile* obj_file);
|
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
D | DynamicLoaderPOSIXDYLD.cpp | 214 ObjectFile *obj_file = module->GetObjectFile(); in UpdateLoadedSections() local 215 SectionList *sections = obj_file->GetSectionList(); in UpdateLoadedSections()
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformDarwin.cpp | 688 ObjectFile *obj_file = module_sp->GetObjectFile(); in ModuleIsExcludedForNonModuleSpecificSearches() local 689 if (!obj_file) in ModuleIsExcludedForNonModuleSpecificSearches() 692 ObjectFile::Type obj_type = obj_file->GetType(); in ModuleIsExcludedForNonModuleSpecificSearches()
|
/external/lldb/source/Plugins/Process/elf-core/ |
D | ProcessElfCore.cpp | 340 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local 341 Address addr = obj_file->GetImageInfoAddress(); in GetImageInfoAddress()
|
/external/mesa3d/scons/ |
D | crossmingw.py | 154 obj_file = env2.SharedObject(c_file)
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDebugMap.cpp | 286 SymbolFileDWARFDebugMap::CreateInstance (ObjectFile* obj_file) in CreateInstance() argument 288 return new SymbolFileDWARFDebugMap (obj_file); in CreateInstance() 473 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local 484 …obj_file->GetModule()->ReportError ("debug map object file '%s' has changed (actual time is 0x%" P… in GetModuleByCompUnitInfo() 508 comp_unit_info->oso_sp->module_sp.reset (new DebugMapModule (obj_file->GetModule(), in GetModuleByCompUnitInfo()
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.cpp | 291 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local 292 Address addr = obj_file->GetImageInfoAddress(); in GetImageInfoAddress()
|