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

  /art/runtime/jit/
debugger_interface.h 32 JITCodeEntry* CreateJITCodeEntry(std::vector<uint8_t> symfile);
41 void CreateJITCodeEntryForAddress(uintptr_t address, std::vector<uint8_t> symfile);
debugger_interface.cc 73 static JITCodeEntry* CreateJITCodeEntryInternal(std::vector<uint8_t> symfile)
75 DCHECK_NE(symfile.size(), 0u);
78 uint8_t* symfile_copy = new uint8_t[symfile.size()];
80 memcpy(symfile_copy, symfile.data(), symfile.size());
85 entry->symfile_size_ = symfile.size();
118 JITCodeEntry* CreateJITCodeEntry(std::vector<uint8_t> symfile) {
121 return CreateJITCodeEntryInternal(std::move(symfile));
134 void CreateJITCodeEntryForAddress(uintptr_t address, std::vector<uint8_t> symfile) {
139 JITCodeEntry* entry = CreateJITCodeEntryInternal(std::move(symfile));
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_info.c 51 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1
52 : dwfl_adjusted_st_value (mod, mod->symfile->elf, 0));
relocate.c 106 the symbol table in RELOCATED itself when it has one, not MOD->symfile. */
114 if (mod->symfile == NULL || mod->symfile->elf != relocated)
160 if (unlikely (mod->symfile == NULL)
168 cache->symelf = mod->symfile->elf;
213 assert (referer->symfile == NULL
214 || referer->symfile->elf != symtab->symelf);
296 sym->st_value = dwfl_adjusted_st_value (m, m->symfile->elf,
304 return __libdwfl_relocate_value (m, m->symfile->elf,
dwfl_module_getdwarf.c 597 load_symtab (struct dwfl_file *file, struct dwfl_file **symfile,
614 *symfile = file;
629 *symfile = file;
693 Will set mod->symfile if the translated offsets can be used as
810 mod->symfile = &mod->main;
888 if (mod->symfile == NULL)
1059 mod->symerr = load_symtab (&mod->main, &mod->symfile, &symscn,
1079 mod->symerr = load_symtab (&mod->debug, &mod->symfile, &symscn,
    [all...]
dwfl_module_getsym.c 63 elf = mod->symfile->elf;
81 elf = mod->symfile->elf;
libdwflP.h 184 struct dwfl_file *symfile; /* Either main or debug. */ member in struct:Dwfl_Module
  /external/google-breakpad/src/tools/mac/upload_system_symbols/
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, output)
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/v8/tools/
grokdump.py     [all...]

Completed in 981 milliseconds