Searched defs:e_ident (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Delf.h47 // 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_DAT
[all...]

Completed in 56 milliseconds