reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/ELF.h
   81   unsigned char getDataEncoding() const { return e_ident[EI_DATA]; }
  107   unsigned char getDataEncoding() const { return e_ident[EI_DATA]; }
include/llvm/Object/ELF.h
   44                         (uint8_t)Object[ELF::EI_DATA]);
include/llvm/Object/ELFTypes.h
  478   unsigned char getDataEncoding() const { return e_ident[ELF::EI_DATA]; }
lib/ObjectYAML/ELFEmitter.cpp
  258   Header.e_ident[EI_DATA] = Doc.Header.Data;
tools/lld/ELF/SyntheticSections.cpp
 3497   eHdr->e_ident[EI_DATA] = config->isLE ? ELFDATA2LSB : ELFDATA2MSB;
tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
   74   if (e_ident[EI_DATA] == ELFDATA2MSB)
   76   if (e_ident[EI_DATA] == ELFDATA2LSB)
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  244   uint32_t endian = header.e_ident[EI_DATA];
  693   if (m_header.e_ident[EI_DATA] == ELFDATA2MSB)
  695   if (m_header.e_ident[EI_DATA] == ELFDATA2LSB)
 2974   s->Printf("e_ident[EI_DATA   ] = 0x%2.2x ", header.e_ident[EI_DATA]);
 2975   DumpELFHeader_e_ident_EI_DATA(s, header.e_ident[EI_DATA]);
tools/llvm-objcopy/ELF/Object.cpp
 1694   Ehdr.e_ident[EI_DATA] =
tools/llvm-readobj/ELFDumper.cpp
 2763   Str = printEnum(e->e_ident[ELF::EI_DATA], makeArrayRef(ElfDataEncoding));
 5153       W.printEnum("DataEncoding", E->e_ident[ELF::EI_DATA],