HomeSort by relevance Sort by last modified time
    Searched defs:elf_file (Results 1 - 3 of 3) sorted by null

  /external/minijail/
elfparse.c 24 ElfType parseElf ## bit(FILE *elf_file, uint8_t *pHead, int little_endian) \
31 if (!elf_file || !pHead) \
47 if (fseek(elf_file, pHeader->e_phoff, SEEK_SET) != 0) \
51 if (fread(&pheader, sizeof(pheader), 1, elf_file) == 1) { \
70 FILE *elf_file = NULL; local
73 elf_file = fopen(path, "r");
74 if (elf_file) {
75 if (fread(pHeader, 1, HEADERSIZE, elf_file) == HEADERSIZE) {
80 ret = parseElf64(elf_file, pHeader, 1);
84 ret = parseElf64(elf_file, pHeader, 0)
    [all...]
  /art/compiler/jit/
jit_compiler.cc 77 std::vector<uint8_t> elf_file = debug::WriteDebugElfFileForClasses( local
82 AddNativeDebugInfoForJit(nullptr /* handle */, elf_file);
  /art/compiler/optimizing/
optimizing_compiler.cc 1408 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT( local
1414 AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file); local
    [all...]

Completed in 232 milliseconds