HomeSort by relevance Sort by last modified time
    Searched full:symfile (Results 1 - 25 of 39) sorted by null

1 2

  /art/runtime/jit/
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...]
debugger_interface.h 32 JITCodeEntry* CreateJITCodeEntry(std::vector<uint8_t> symfile);
41 void CreateJITCodeEntryForAddress(uintptr_t address, std::vector<uint8_t> symfile);
  /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_getsym.c 63 elf = mod->symfile->elf;
81 elf = mod->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...]
ChangeLog     [all...]
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)
  /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/curl/src/
Makefile.Watcom 161 @%append $(LINK_ARG) option symfile
  /external/curl/lib/
Makefile.Watcom 204 @%append $(LINK_ARG) option symfile
  /external/google-breakpad/autotools/
ltmain.sh     [all...]
  /external/google-tv-pairing-protocol/cpp/
ltmain.sh     [all...]
  /external/libmtp/
ltmain.sh     [all...]
  /external/libogg/
ltmain.sh     [all...]
  /external/libusb/
ltmain.sh     [all...]
  /external/libusb-compat/
ltmain.sh     [all...]
  /external/libvorbis/
ltmain.sh     [all...]
  /toolchain/binutils/binutils-2.25/
ltmain.sh     [all...]
  /external/cmockery/cmockery_0_1_2/
libtool     [all...]
ltmain.sh 1191 compile_command="$compile_command @SYMFILE@"
1192 finalize_command="$finalize_command @SYMFILE@"
    [all...]
  /external/v8/tools/
grokdump.py     [all...]
  /external/libunwind/aux/
ltmain.sh 851 compile_command="$compile_command @SYMFILE@"
852 finalize_command="$finalize_command @SYMFILE@"
    [all...]
  /external/ImageMagick/config/
ltmain.sh     [all...]

Completed in 4153 milliseconds

1 2