Home
last modified time | relevance | path

Searched refs:elf_file (Results 1 – 5 of 5) sorted by relevance

/external/oprofile/opjitconv/
Dopjitconv.c211 int copy_elffile(char * elf_file, char * tmp_elffile) in copy_elffile() argument
216 sprintf(sys_cmd_buffer, "/bin/cp -p %s %s", tmp_elffile, elf_file); in copy_elffile()
223 fd = open(elf_file, 0); in copy_elffile()
259 char * elf_file = NULL; in process_jit_dumpfile() local
329 elf_file = xmalloc(result_dir_length + in process_jit_dumpfile()
331 strncpy(elf_file, anon_dir, result_dir_length); in process_jit_dumpfile()
332 elf_file[result_dir_length] = '\0'; in process_jit_dumpfile()
333 strcat(elf_file, proc_id); in process_jit_dumpfile()
334 strcat(elf_file, ".jo"); in process_jit_dumpfile()
345 jofd = open(elf_file, O_RDONLY); in process_jit_dumpfile()
[all …]
/external/chromium_org/tools/relocation_packer/src/
Dmain.cc158 relocation_packer::ElfFile elf_file(fd); in main() local
159 elf_file.SetPadding(is_padding); in main()
163 status = elf_file.UnpackRelocations(); in main()
165 status = elf_file.PackRelocations(); in main()
Delf_file_unittest.cc131 ElfFile elf_file(fileno(relocs_so)); in TEST() local
134 EXPECT_FALSE(elf_file.UnpackRelocations()); in TEST()
137 EXPECT_TRUE(elf_file.PackRelocations()); in TEST()
152 ElfFile elf_file(fileno(packed_relocs_so)); in TEST() local
155 EXPECT_FALSE(elf_file.PackRelocations()); in TEST()
158 EXPECT_TRUE(elf_file.UnpackRelocations()); in TEST()
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
Dandroid_profiling_helper.py30 def _ElfMachineId(elf_file): argument
31 headers = subprocess.check_output(['readelf', '-h', elf_file])
35 def _ElfSectionAsString(elf_file, section): argument
36 return subprocess.check_output(['readelf', '-p', section, elf_file])
39 def _ElfSectionMd5Sum(elf_file, section): argument
41 'readelf -p%s "%s" | md5sum' % (section, elf_file), shell=True)
/external/chromium_org/tools/relocation_packer/
Drelocation_packer.gyp31 'src/elf_file.cc',