/external/qemu/elff/ |
elff_api.cc | 19 #include "elf_file.h"
29 ElfFile* elf_file = ElfFile::Create(elf_file_path);
local 30 return reinterpret_cast<ELFF_HANDLE>(elf_file);
|
dwarf_die.cc | 21 #include "elf_file.h"
33 ElfFile* DIEObject::elf_file() const {
function in class:DIEObject 34 return parent_cu()->elf_file();
140 while (elf_file()->get_range(range_off, &low, &high) &&
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) &&
|
dwarf_cu.h | 146 ElfFile* elf_file() const {
function in class:DwarfCU 453 stmtl_header_.unit_length = elf_file()->pull_val(stmtl_hdr->unit_length.size);
454 stmtl_header_.version = elf_file()->pull_val(stmtl_hdr->version);
455 stmtl_header_.header_length = elf_file()->pull_val(stmtl_hdr->header_length);
|
/ndk/sources/host-tools/ndk-stack/elff/ |
elff_api.cc | 19 #include "elf_file.h" 29 ElfFile* elf_file = ElfFile::Create(elf_file_path); local 30 return reinterpret_cast<ELFF_HANDLE>(elf_file);
|
dwarf_die.cc | 23 #include "elf_file.h" 35 ElfFile* DIEObject::elf_file() const { function in class:DIEObject 36 return parent_cu()->elf_file(); 142 while (elf_file()->get_range(range_off, &low, &high) && 215 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) && 223 while (elf_file()->get_range<Elf_Word>(off, &low, &high) &&
|
dwarf_cu.h | 146 ElfFile* elf_file() const { function in class:DwarfCU 453 stmtl_header_.unit_length = elf_file()->pull_val(stmtl_hdr->unit_length.size); 454 stmtl_header_.version = elf_file()->pull_val(stmtl_hdr->version); 455 stmtl_header_.header_length = elf_file()->pull_val(stmtl_hdr->header_length);
|
/sdk/emulator/qtools/ |
bb_dump.cpp | 15 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program); 28 char *elf_file = argv[optind++]; local 31 trace->ReadKernelSymbols(elf_file);
|
check_trace.cpp | 18 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program); 31 char *elf_file = argv[optind++]; local 34 trace->ReadKernelSymbols(elf_file);
|
q2g.cpp | 28 fprintf(stderr, "Usage: %s [options] trace_file elf_file gtrace_file\n", 42 char *elf_file = argv[optind++]; local 46 trace->ReadKernelSymbols(elf_file);
|
bb2sym.cpp | 24 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program); 53 char *elf_file = argv[optind++]; local 56 trace->ReadKernelSymbols(elf_file);
|
read_method.cpp | 74 fprintf(stderr, "Usage: %s [options] trace_name elf_file\n", 87 char *elf_file = argv[optind++]; local 90 trace->ReadKernelSymbols(elf_file);
|
read_trace.cpp | 20 "Usage: %s [options] [-- -s start_time] trace_file elf_file\n", 55 char *elf_file = argv[optind++]; local 59 trace->ReadKernelSymbols(elf_file);
|
stack_dump.cpp | 77 fprintf(stderr, "Usage: %s [options] [-- -d dumpTime] trace_name elf_file\n", 111 char *elf_file = argv[optind++]; local 114 trace->ReadKernelSymbols(elf_file);
|
coverage.cpp | 73 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program); 86 char *elf_file = argv[optind++]; local 90 trace->ReadKernelSymbols(elf_file);
|
profile_trace.cpp | 42 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program); 55 char *elf_file = argv[optind++]; local 59 trace->ReadKernelSymbols(elf_file);
|
check_stack.cpp | 80 fprintf(stderr, "Usage: %s [options] trace_name elf_file\n", 94 char *elf_file = argv[optind++]; local 98 etrace->ReadKernelSymbols(elf_file); 103 mtrace->ReadKernelSymbols(elf_file);
|
q2dm.cpp | 127 fprintf(stderr, "Usage: %s [options] trace_name elf_file dmtrace_name\n", 143 char *elf_file = argv[optind++]; local 148 trace->ReadKernelSymbols(elf_file);
|
/external/oprofile/opjitconv/ |
opjitconv.c | 211 int copy_elffile(char * elf_file, char * tmp_elffile) 216 sprintf(sys_cmd_buffer, "/bin/cp -p %s %s", tmp_elffile, elf_file); 223 fd = open(elf_file, 0); 259 char * elf_file = NULL; local 329 elf_file = xmalloc(result_dir_length + 331 strncpy(elf_file, anon_dir, result_dir_length); 332 elf_file[result_dir_length] = '\0'; 333 strcat(elf_file, proc_id); 334 strcat(elf_file, ".jo"); 345 jofd = open(elf_file, O_RDONLY) [all...] |