Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/unittests/SymbolFile/PDB/
DSymbolFilePDBTests.cpp154 SymbolFile *symfile = module->GetSymbolFile(); in TEST_F() local
155 EXPECT_NE(nullptr, symfile); in TEST_F()
156 EXPECT_EQ(symfile->GetPluginName(), SymbolFilePDB::GetPluginNameStatic()); in TEST_F()
159 EXPECT_EQ(expected_abilities, symfile->CalculateAbilities()); in TEST_F()
170 SymbolFile *symfile = module->GetSymbolFile(); in TEST_F() local
174 uint32_t result_count = symfile->ResolveSymbolContext( in TEST_F()
188 SymbolFile *symfile = module->GetSymbolFile(); in TEST_F() local
193 uint32_t result_count = symfile->ResolveSymbolContext( in TEST_F()
209 SymbolFile *symfile = module->GetSymbolFile(); in TEST_F() local
217 uint32_t result_count = symfile->ResolveSymbolContext( in TEST_F()
[all …]
/external/llvm-project/lldb/source/Symbol/
DCompileUnit.cpp149 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetLanguage() local
150 m_language = symfile->ParseLanguage(*this); in GetLanguage()
160 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetLineTable() local
161 symfile->ParseLineTable(*this); in GetLineTable()
183 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetDebugMacros() local
184 symfile->ParseDebugMacros(*this); in GetDebugMacros()
327 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { in GetIsOptimized() local
328 if (symfile->ParseIsOptimized(*this)) in GetIsOptimized()
343 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { in GetImportedModules() local
346 symfile->ParseImportedModules(sc, m_imported_modules); in GetImportedModules()
[all …]
DFuncUnwinders.cpp205 if (SymbolFile *symfile = m_unwind_table.GetSymbolFile()) { in GetSymbolFileUnwindPlan() local
206 m_unwind_plan_symbol_file_sp = symfile->GetUnwindPlan( in GetSymbolFileUnwindPlan()
/external/google-breakpad/src/tools/mac/upload_system_symbols/
Dupload_system_symbols.go201 for symfile := range uq.queue {
204 cmd := exec.Command(symUpload, symfile, server)
207 fmt.Printf("Uploaded %s to %s\n", symfile, server)
210 …log.Printf("Error running symupload(%s, %s), attempt %d: %v: %s\n", symfile, server, i, err, outpu…
271 symfile := fmt.Sprintf("%s_%s.sym", filebase, req.arch)
272 f, err := os.Create(symfile)
283 os.Remove(symfile)
286 dq.uq.Upload(symfile)
/external/llvm-project/lldb/unittests/TestingSupport/Symbol/
DYAMLModuleTester.cpp23 auto &symfile = *llvm::cast<SymbolFileDWARF>(m_module_sp->GetSymbolFile()); in YAMLModuleTester() local
25 m_dwarf_unit = symfile.DebugInfo().GetUnitAtIndex(0); in YAMLModuleTester()
/external/elfutils/libdwfl/
Ddwfl_module_info.c55 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 in dwfl_module_info()
56 : dwfl_adjusted_st_value (mod, mod->symfile->elf, 0)); in dwfl_module_info()
Drelocate.c119 if (mod->symfile == NULL || mod->symfile->elf != relocated) in relocate_getsym()
165 if (unlikely (mod->symfile == NULL) in relocate_getsym()
173 cache->symelf = mod->symfile->elf; in relocate_getsym()
218 assert (referer->symfile == NULL in resolve_symbol()
219 || referer->symfile->elf != symtab->symelf); in resolve_symbol()
301 sym->st_value = dwfl_adjusted_st_value (m, m->symfile->elf, in resolve_symbol()
309 return __libdwfl_relocate_value (m, m->symfile->elf, in resolve_symbol()
Ddwfl_module_getdwarf.c604 load_symtab (struct dwfl_file *file, struct dwfl_file **symfile, in load_symtab() argument
621 *symfile = file; in load_symtab()
636 *symfile = file; in load_symtab()
817 mod->symfile = &mod->main; in translate_offs()
895 if (mod->symfile == NULL) in find_dynsym()
1068 mod->symerr = load_symtab (&mod->main, &mod->symfile, &symscn, in find_symtab()
1088 mod->symerr = load_symtab (&mod->debug, &mod->symfile, &symscn, in find_symtab()
1132 if (elf_strptr (mod->symfile->elf, strshndx, 0) == NULL) in find_symtab()
1148 Elf_Scn *symstrscn = elf_getscn (mod->symfile->elf, strshndx); in find_symtab()
1158 if (elf_getshdrstrndx (mod->symfile->elf, &shstrndx) < 0) in find_symtab()
[all …]
Ddwfl_module_getsym.c67 elf = mod->symfile->elf; in __libdwfl_getsym()
85 elf = mod->symfile->elf; in __libdwfl_getsym()
DlibdwflP.h180 struct dwfl_file *symfile; /* Either main or debug. */ member
/external/llvm-project/lldb/unittests/SymbolFile/DWARF/
DSymbolFileDWARFTests.cpp63 SymbolFile *symfile = module->GetSymbolFile(); in TEST_F() local
64 ASSERT_NE(nullptr, symfile); in TEST_F()
65 EXPECT_EQ(symfile->GetPluginName(), SymbolFileDWARF::GetPluginNameStatic()); in TEST_F()
68 EXPECT_EQ(expected_abilities, symfile->CalculateAbilities()); in TEST_F()
/external/llvm-project/lldb/tools/lldb-test/
Dlldb-test.cpp605 SymbolFile *symfile = Module.GetSymbolFile(); in dumpAST() local
606 if (!symfile) in dumpAST()
610 symfile->GetTypeSystemForLanguage(eLanguageTypeC_plus_plus); in dumpAST()
633 SymbolFile *symfile = Module.GetSymbolFile(); in dumpEntireClangAST() local
634 if (!symfile) in dumpEntireClangAST()
638 symfile->GetTypeSystemForLanguage(eLanguageTypeObjC_plus_plus); in dumpEntireClangAST()
655 SymbolFile *symfile = Module.GetSymbolFile(); in verify() local
656 if (!symfile) in verify()
659 uint32_t comp_units_count = symfile->GetNumCompileUnits(); in verify()
664 lldb::CompUnitSP comp_unit = symfile->GetCompileUnitAtIndex(i); in verify()
/external/llvm-project/lldb/source/API/
DSBCompileUnit.cpp141 SymbolFile *symfile = module_sp->GetSymbolFile(); in GetTypes() local
142 if (!symfile) in GetTypes()
147 symfile->GetTypes(m_opaque_ptr, type_class, type_list); in GetTypes()
DSBModule.cpp531 if (SymbolFile *symfile = module_sp->GetSymbolFile()) { in GetTypeByID() local
532 Type *type_ptr = symfile->ResolveTypeUID(uid); in GetTypeByID()
549 SymbolFile *symfile = module_sp->GetSymbolFile(); in GetTypes() local
550 if (!symfile) in GetTypes()
555 symfile->GetTypes(nullptr, type_class, type_list); in GetTypes()
651 if (SymbolFile *symfile = module_sp->GetSymbolFile()) in GetSymbolFileSpec() local
652 sb_file_spec.SetFileSpec(symfile->GetObjectFile()->GetFileSpec()); in GetSymbolFileSpec()
/external/llvm-project/lldb/examples/python/
Dsymbolication.py242 self.symfile = None
258 obj.symfile = None
276 print('symfile = "%s"' % (self.symfile))
320 if self.symfile:
321 return os.path.basename(self.symfile)
382 resolved_path, str(self.arch), uuid_str, self.symfile)
Dcrashlog.py281 self.symfile = os.path.realpath(
297 self.symfile = dsym
/external/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/Inputs/
Dlocate-pdb.lldbinit1 target modules dump symfile
/external/llvm-project/lldb/docs/use/
Dsymbolication.rst165 you can specify their paths using the --symfile option for the ``target create``
170 (lldb) target create --no-dependents --arch x86_64 /tmp/a.out --symfile /tmp/a.out.dSYM
171 …(lldb) target modules add /usr/lib/system/libsystem_c.dylib --symfile /build/server/a/libsystem_c.…
172 …(lldb) target modules add /usr/lib/system/libsystem_dnssd.dylib --symfile /build/server/b/libsyste…
173 …(lldb) target modules add /usr/lib/system/libsystem_kernel.dylib --symfile /build/server/c/libsyst…
/external/llvm-project/lldb/source/Core/
DModule.cpp474 SymbolFile *symfile = GetSymbolFile(); in ResolveSymbolContextForAddress() local
475 if (!symfile) in ResolveSymbolContextForAddress()
486 symfile->ResolveSymbolContext(so_addr, resolve_scope, sc); in ResolveSymbolContextForAddress()
493 Symtab *symtab = symfile->GetSymtab(); in ResolveSymbolContextForAddress()
526 ObjectFile *symfile_objfile = symfile->GetObjectFile(); in ResolveSymbolContextForAddress()
/external/llvm-project/lldb/test/Shell/SymbolFile/DWARF/
Ddebug_loc.s25 # CHECK-LABEL: image dump symfile
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.cpp189 if (SymbolFile *symfile = in GetSymbolFile() local
195 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(symfile); in GetSymbolFile()
210 return symfile; in GetSymbolFile()
/external/llvm-project/lldb/include/lldb/API/
DSBTarget.h292 const char *uuid_cstr, const char *symfile);
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp286 FileSpec symfile(m_symbol_file.GetOptionValue().GetCurrentValue()); in DoExecute() local
287 if (symfile) { in DoExecute()
289 symfile, lldb_private::File::eOpenOptionRead); in DoExecute()
293 symfile.GetPath(), in DoExecute()
376 if (symfile || remote_file) { in DoExecute()
379 if (symfile) in DoExecute()
380 module_sp->SetSymbolFileFileSpec(symfile); in DoExecute()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp149 FileSpec symfile = module_sp->GetSymbolFileFileSpec(); in CalculateAbilities() local
150 if (!symfile) in CalculateAbilities()
153 llvm::StringRef(symfile.GetPath()), m_session_up); in CalculateAbilities()
/external/llvm-project/lldb/bindings/interface/
DSBTarget.i371 const char *symfile);

12