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

  /external/minijail/
elfparse.c 17 ElfType parseElf ## bit(FILE *elf_file, uint8_t *pHead, int little_endian) \
24 if (!elf_file || !pHead) \
40 if (fseek(elf_file, pHeader->e_phoff, SEEK_SET) != 0) \
44 if (fread(&pheader, sizeof(pheader), 1, elf_file) == 1) { \
63 FILE *elf_file = NULL; local
66 elf_file = fopen(path, "r");
67 if (elf_file) {
68 if (fread(pHeader, 1, HEADERSIZE, elf_file) == HEADERSIZE) {
73 ret = parseElf64(elf_file, pHeader, 1);
77 ret = parseElf64(elf_file, pHeader, 0)
    [all...]
  /art/compiler/jit/
jit_compiler.cc 72 std::vector<uint8_t> elf_file = debug::WriteDebugElfFileForClasses( local
74 CreateJITCodeEntry(std::move(elf_file));
  /system/core/libbacktrace/
BacktraceOffline.cpp 686 std::string elf_file = filename.substr(pos + 2); local
700 ret_code = FindEntry(handle, ZipString(elf_file.c_str()), &zentry);
702 BACK_LOGW("failed to find %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
707 BACK_LOGW("%s is compressed in %s, which doesn't support running directly", elf_file.c_str(),
715 BACK_LOGW("failed to read %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
721 BACK_LOGW("failed to create binary for %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
  /art/compiler/optimizing/
optimizing_compiler.cc 961 std::vector<uint8_t> elf_file = debug::WriteDebugElfFileForMethods( local
    [all...]
  /art/oatdump/
oatdump.cc 115 File* elf_file = OS::CreateEmptyFile(output_name_.c_str()); local
117 MakeUnique<BufferedOutputStream>(MakeUnique<FileOutputStream>(elf_file)));
154 elf_file->GetPath(), rodata_size, text_size, oat_file_->BssSize());
    [all...]

Completed in 149 milliseconds