HomeSort by relevance Sort by last modified time
    Searched defs:e_ident (Results 151 - 158 of 158) sorted by null

1 2 3 4 5 67

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
exec_elf.h 66 * e_ident[] identification indexes
79 #define EI_NIDENT 16 /* Size of e_ident[] */
81 /* e_ident[] magic number */
82 #define ELFMAG0 0x7f /* e_ident[EI_MAG0] */
83 #define ELFMAG1 'E' /* e_ident[EI_MAG1] */
84 #define ELFMAG2 'L' /* e_ident[EI_MAG2] */
85 #define ELFMAG3 'F' /* e_ident[EI_MAG3] */
89 /* e_ident[] file class */
95 /* e_ident[] data encoding */
101 /* e_ident[] Operating System/ABI *
126 unsigned char e_ident[EI_NIDENT]; \/* ELF Identification *\/ member in struct:elfhdr
144 unsigned char e_ident[EI_NIDENT]; \/* Id bytes *\/ member in struct:__anon62352
    [all...]
  /art/runtime/
elf.h 47 // e_ident size and indices.
59 EI_NIDENT = 16 // Number of bytes in e_ident.
70 unsigned char e_ident[EI_NIDENT]; // ELF Identification bytes member in struct:Elf32_Ehdr
85 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
87 unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
88 unsigned char getDataEncoding() const { return e_ident[EI_DATA]; }
94 unsigned char e_ident[EI_NIDENT]; member in struct:Elf64_Ehdr
109 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
111 unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
112 unsigned char getDataEncoding() const { return e_ident[EI_DATA];
    [all...]
  /external/llvm/include/llvm/Support/
ELF.h 48 // e_ident size and indices.
60 EI_NIDENT = 16 // Number of bytes in e_ident.
64 unsigned char e_ident[EI_NIDENT]; // ELF Identification bytes member in struct:llvm::ELF::Elf32_Ehdr
79 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
81 unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
82 unsigned char getDataEncoding() const { return e_ident[EI_DATA]; }
88 unsigned char e_ident[EI_NIDENT]; member in struct:llvm::ELF::Elf64_Ehdr
103 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
105 unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
106 unsigned char getDataEncoding() const { return e_ident[EI_DATA];
    [all...]
  /external/qemu/include/
elf.h 1250 unsigned char e_ident[EI_NIDENT]; member in struct:elf32_hdr
1267 unsigned char e_ident[16]; \/* ELF "magic number" *\/ member in struct:elf64_hdr
    [all...]
  /external/elfutils/0.153/libelf/
elf.h 73 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon4923
91 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon4924
107 /* Fields in the e_ident array. The EI_* macros are indices into the
    [all...]
  /external/valgrind/main/perf/
tinycc.c 152 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon16945
170 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon16946
186 /* Fields in the e_ident array. The EI_* macros are indices into the
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
elf.h 71 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon25600
89 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon25601
105 /* Fields in the e_ident array. The EI_* macros are indices into the
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
elf.h 71 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon27336
89 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ member in struct:__anon27337
105 /* Fields in the e_ident array. The EI_* macros are indices into the
    [all...]

Completed in 131 milliseconds

1 2 3 4 5 67