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/google-breakpad/src/tools/mac/upload_system_symbols/
Dupload_system_symbols.go196 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/
Ddwfl_module_info.c51 *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()
Drelocate.c114 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()
Ddwfl_module_getdwarf.c565 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()
Ddwfl_module_getsym.c63 elf = mod->symfile->elf; in __libdwfl_getsym()
81 elf = mod->symfile->elf; in __libdwfl_getsym()
DlibdwflP.h174 struct dwfl_file *symfile; /* Either main or debug. */ member
DChangeLog832 (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/
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/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()