/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | UniqueDWARFASTType.h | 44 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()
|
D | UniqueDWARFASTType.cpp | 23 SymbolFileDWARF *symfile, in Find() argument 61 … const char *parent_arg_die_name = parent_arg_die->GetName(symfile, cu); in Find()
|
/external/google-breakpad/src/tools/mac/upload_system_symbols/ |
D | upload_system_symbols.go | 196 for symfile := range uq.queue { 199 cmd := exec.Command(symUpload, symfile, server) 202 fmt.Printf("Uploaded %s to %s\n", symfile, server) 205 …log.Printf("Error running symupload(%s, %s), attempt %d: %v: %s\n", symfile, server, i, err, outpu… 266 symfile := fmt.Sprintf("%s_%s.sym", filebase, req.arch) 267 f, err := os.Create(symfile) 278 os.Remove(symfile) 281 dq.uq.Upload(symfile)
|
/external/elfutils/src/libdwfl/ |
D | dwfl_module_info.c | 51 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 in dwfl_module_info() 52 : dwfl_adjusted_st_value (mod, mod->symfile->elf, 0)); in dwfl_module_info()
|
D | relocate.c | 114 if (mod->symfile == NULL || mod->symfile->elf != relocated) in relocate_getsym() 151 if (unlikely (mod->symfile == NULL) in relocate_getsym() 159 cache->symelf = mod->symfile->elf; in relocate_getsym() 204 assert (referer->symfile == NULL in resolve_symbol() 205 || referer->symfile->elf != symtab->symelf); in resolve_symbol() 262 sym->st_value = dwfl_adjusted_st_value (m, m->symfile->elf, in resolve_symbol() 270 return __libdwfl_relocate_value (m, m->symfile->elf, in resolve_symbol()
|
D | dwfl_module_getdwarf.c | 565 load_symtab (struct dwfl_file *file, struct dwfl_file **symfile, in load_symtab() argument 582 *symfile = file; in load_symtab() 597 *symfile = file; in load_symtab() 838 mod->symfile = &mod->main; in find_dynsym() 848 if (mod->symfile == NULL) in find_dynsym() 1019 mod->symerr = load_symtab (&mod->main, &mod->symfile, &symscn, in find_symtab() 1039 mod->symerr = load_symtab (&mod->debug, &mod->symfile, &symscn, in find_symtab() 1083 if (elf_strptr (mod->symfile->elf, strshndx, 0) == NULL) in find_symtab() 1092 mod->symstrdata = elf_getdata (elf_getscn (mod->symfile->elf, strshndx), in find_symtab()
|
D | dwfl_module_getsym.c | 63 elf = mod->symfile->elf; in __libdwfl_getsym() 81 elf = mod->symfile->elf; in __libdwfl_getsym()
|
D | libdwflP.h | 174 struct dwfl_file *symfile; /* Either main or debug. */ member
|
D | ChangeLog | 832 (dwfl_adjusted_st_value): Take and check symfile argument. 842 * dwfl_module_addrsym.c (dwfl_module_addrsym): Check symfile 850 with symfile. 1623 * relocate.c (relocate_getsym): Handle null MOD->symfile. 1659 * dwfl_module_getsym.c (dwfl_module_getsym): Apply MOD->symfile->bias 1695 really at 0, don't check for it. Use MOD->debug directly, not symfile. 1706 Always work on the main file, not the symfile.
|
/external/lldb/examples/python/ |
D | symbolication.py | 212 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)
|
D | crashlog.py | 178 self.symfile = os.path.realpath(plist['DBGDSYMPath'])
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformDarwin.cpp | 73 SymbolFile *symfile = symbols->GetSymbolFile(); in LocateExecutableScriptingResources() local 74 if (symfile) in LocateExecutableScriptingResources() 76 ObjectFile *objfile = symfile->GetObjectFile(); in LocateExecutableScriptingResources()
|
/external/lldb/include/lldb/API/ |
D | SBTarget.h | 479 const char *symfile);
|
/external/lldb/source/Commands/ |
D | CommandObjectTarget.cpp | 231 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/ |
D | SBTarget.i | 516 const char *symfile);
|
/external/v8/tools/ |
D | grokdump.py | 820 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/ |
D | SBTarget.cpp | 1893 const char *symfile) in AddModule() argument 1909 if (symfile) in AddModule() 1910 module_spec.GetSymbolFileSpec ().SetFile(symfile, false); in AddModule()
|