HomeSort by relevance Sort by last modified time
    Searched refs:symfile (Results 1 - 17 of 17) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
UniqueDWARFASTType.h 44 SymbolFileDWARF *symfile,
50 m_symfile (symfile),
120 Find (SymbolFileDWARF *symfile,
153 SymbolFileDWARF *symfile,
164 return pos->second.Find (symfile, cu, die, decl, byte_size, entry);
UniqueDWARFASTType.cpp 23 SymbolFileDWARF *symfile,
61 const char *parent_arg_die_name = parent_arg_die->GetName(symfile, cu);
  /external/elfutils/0.153/libdwfl/
dwfl_module_info.c 72 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1
dwfl_module_getsym.c 84 GElf_Shdr *shdr = gelf_getshdr (elf_getscn (mod->symfile->elf, shndx),
106 Dwfl_Error result = __libdwfl_relocate_value (mod, mod->symfile->elf,
relocate.c 123 the symbol table in RELOCATED itself when it has one, not MOD->symfile. */
131 if (mod->symfile == NULL || mod->symfile->elf != relocated)
168 if (unlikely (mod->symfile == NULL)
176 cache->symelf = mod->symfile->elf;
221 assert (referer->symfile == NULL
222 || referer->symfile->elf != symtab->symelf);
285 return __libdwfl_relocate_value (m, m->symfile->elf,
dwfl_module_getdwarf.c 569 load_symtab (struct dwfl_file *file, struct dwfl_file **symfile,
584 *symfile = file;
597 *symfile = file;
826 mod->symfile = &mod->main;
853 mod->symerr = load_symtab (&mod->main, &mod->symfile, &symscn,
873 mod->symerr = load_symtab (&mod->debug, &mod->symfile, &symscn,
907 if (elf_strptr (mod->symfile->elf, strshndx, 0) == NULL)
916 mod->symstrdata = elf_getdata (elf_getscn (mod->symfile->elf, strshndx),
libdwflP.h 172 struct dwfl_file *symfile; /* Either main or debug. */ member in struct:Dwfl_Module
280 if (mod->symfile == &mod->main)
288 if (mod->symfile == &mod->main)
dwfl_module_addrsym.c 77 while ((scn = elf_nextscn (mod->symfile->elf, scn)) != NULL)
  /ndk/build/tools/
dev-system-import.sh 367 local symfile="$symdir/`basename $1.txt`"
369 dump "Generating symbol file: $symfile"
370 mkdir -p "$symdir" && > $symfile
371 (echo "$funcs" | tr ' ' '\n') >> $symfile
372 (echo "$vars" | tr ' ' '\n') >> $symfile
  /external/lldb/examples/python/
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)
336 # self.symfile
crashlog.py 178 self.symfile = os.path.realpath(plist['DBGDSYMPath'])
201 # if self.symfile:
202 # print ' dsym = "%s"' % self.symfile
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp 73 SymbolFile *symfile = symbols->GetSymbolFile(); local
74 if (symfile)
76 ObjectFile *objfile = symfile->GetObjectFile();
    [all...]
  /external/lldb/include/lldb/API/
SBTarget.h 479 const char *symfile);
  /external/lldb/scripts/Python/interface/
SBTarget.i 516 const char *symfile);
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 161 m_symbol_file (LLDB_OPT_SET_1, false, "symfile", 's', 0, eArgTypeFilename, "Fullpath to a stand alone debug symbols file for when debug symbols are not in the executable."),
231 FileSpec symfile (m_symbol_file.GetOptionValue().GetCurrentValue());
232 if (symfile)
234 if (!symfile.Exists())
237 symfile.GetPath(symfile_path, sizeof(symfile_path));
259 if (symfile || remote_file)
264 if (symfile)
265 module_sp->SetSymbolFileFileSpec(symfile);
    [all...]
  /external/lldb/source/API/
SBTarget.cpp     [all...]
  /external/chromium_org/v8/tools/
grokdump.py 820 def _LoadSymbolsFrom(self, symfile, baseaddr):
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)
    [all...]

Completed in 373 milliseconds