Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/SymbolFile/DWARF/
DUniqueDWARFASTType.h44 SymbolFileDWARF *symfile, in UniqueDWARFASTType() argument
50 m_symfile (symfile), in UniqueDWARFASTType()
120 Find (SymbolFileDWARF *symfile,
153 SymbolFileDWARF *symfile, in Find() argument
164 return pos->second.Find (symfile, cu, die, decl, byte_size, entry); in Find()
DUniqueDWARFASTType.cpp23 SymbolFileDWARF *symfile, in Find() argument
61 … const char *parent_arg_die_name = parent_arg_die->GetName(symfile, cu); in Find()
/external/elfutils/0.153/libdwfl/
Drelocate.c131 if (mod->symfile == NULL || mod->symfile->elf != relocated) in relocate_getsym()
168 if (unlikely (mod->symfile == NULL) in relocate_getsym()
176 cache->symelf = mod->symfile->elf; in relocate_getsym()
221 assert (referer->symfile == NULL in resolve_symbol()
222 || referer->symfile->elf != symtab->symelf); in resolve_symbol()
285 return __libdwfl_relocate_value (m, m->symfile->elf, in resolve_symbol()
Ddwfl_module_getsym.c84 GElf_Shdr *shdr = gelf_getshdr (elf_getscn (mod->symfile->elf, shndx), in dwfl_module_getsym()
106 Dwfl_Error result = __libdwfl_relocate_value (mod, mod->symfile->elf, in dwfl_module_getsym()
Ddwfl_module_getdwarf.c569 load_symtab (struct dwfl_file *file, struct dwfl_file **symfile, in load_symtab() argument
584 *symfile = file; in load_symtab()
597 *symfile = file; in load_symtab()
826 mod->symfile = &mod->main; in find_dynsym()
853 mod->symerr = load_symtab (&mod->main, &mod->symfile, &symscn, in find_symtab()
873 mod->symerr = load_symtab (&mod->debug, &mod->symfile, &symscn, in find_symtab()
907 if (elf_strptr (mod->symfile->elf, strshndx, 0) == NULL) in find_symtab()
916 mod->symstrdata = elf_getdata (elf_getscn (mod->symfile->elf, strshndx), in find_symtab()
Ddwfl_module_info.c72 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 in dwfl_module_info()
DlibdwflP.h172 struct dwfl_file *symfile; /* Either main or debug. */ member
280 if (mod->symfile == &mod->main) in dwfl_adjusted_st_value()
288 if (mod->symfile == &mod->main) in dwfl_deadjust_st_value()
Ddwfl_module_addrsym.c77 while ((scn = elf_nextscn (mod->symfile->elf, scn)) != NULL) in dwfl_module_addrsym()
DChangeLog696 * relocate.c (relocate_getsym): Handle null MOD->symfile.
732 * dwfl_module_getsym.c (dwfl_module_getsym): Apply MOD->symfile->bias
768 really at 0, don't check for it. Use MOD->debug directly, not symfile.
779 Always work on the main file, not the symfile.
/external/lldb/examples/python/
Dsymbolication.py212 self.symfile = None
230 print 'symfile = "%s"' % (self.symfile)
265 if self.symfile:
266 return os.path.basename(self.symfile)
321 self.module = target.AddModule (resolved_path, self.arch, uuid_str, self.symfile)
Dcrashlog.py178 self.symfile = os.path.realpath(plist['DBGDSYMPath'])
/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp73 SymbolFile *symfile = symbols->GetSymbolFile(); in LocateExecutableScriptingResources() local
74 if (symfile) in LocateExecutableScriptingResources()
76 ObjectFile *objfile = symfile->GetObjectFile(); in LocateExecutableScriptingResources()
/external/lldb/include/lldb/API/
DSBTarget.h479 const char *symfile);
/external/lldb/source/Commands/
DCommandObjectTarget.cpp231 FileSpec symfile (m_symbol_file.GetOptionValue().GetCurrentValue()); in DoExecute() local
232 if (symfile) in DoExecute()
234 if (!symfile.Exists()) in DoExecute()
237 symfile.GetPath(symfile_path, sizeof(symfile_path)); in DoExecute()
259 if (symfile || remote_file) in DoExecute()
264 if (symfile) in DoExecute()
265 module_sp->SetSymbolFileFileSpec(symfile); in DoExecute()
/external/lldb/scripts/Python/interface/
DSBTarget.i516 const char *symfile);
/external/chromium_org/v8/tools/
Dgrokdump.py820 def _LoadSymbolsFrom(self, symfile, baseaddr): argument
821 print "Loading symbols from %s" % (symfile)
823 with open(symfile) as f:
837 symfile = os.path.join(self.symdir,
839 if os.path.isfile(symfile):
840 self._LoadSymbolsFrom(symfile, module.base_of_image)
/external/lldb/source/API/
DSBTarget.cpp1893 const char *symfile) in AddModule() argument
1909 if (symfile) in AddModule()
1910 module_spec.GetSymbolFileSpec ().SetFile(symfile, false); in AddModule()