reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
61 elf_word e_flags; ///< Processor specific flags. 62 elf_word e_version; ///< Version of object file (always 1). 75 elf_word e_phnum; ///< Number of program header entries. 76 elf_word e_shnum; ///< Number of section header entries. 77 elf_word e_shstrndx; ///< String table section index. 160 elf_word sh_name; ///< Section name string index. 161 elf_word sh_type; ///< Section type. 166 elf_word sh_link; ///< Index of associated section. 167 elf_word sh_info; ///< Extra section info (overloaded). 193 elf_word p_type; ///< Type of program segment. 194 elf_word p_flags; ///< Segment attributes. 227 elf_word st_name; ///< Symbol name string index.tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
67 const elf_word LLDB_NT_FREEBSD_ABI_TAG = 0x01; 68 const elf_word LLDB_NT_FREEBSD_ABI_SIZE = 4; 70 const elf_word LLDB_NT_GNU_ABI_TAG = 0x01; 71 const elf_word LLDB_NT_GNU_ABI_SIZE = 16; 73 const elf_word LLDB_NT_GNU_BUILD_ID_TAG = 0x03; 75 const elf_word LLDB_NT_NETBSD_IDENT_TAG = 1; 76 const elf_word LLDB_NT_NETBSD_IDENT_DESCSZ = 4; 77 const elf_word LLDB_NT_NETBSD_IDENT_NAMESZ = 7; 78 const elf_word LLDB_NT_NETBSD_PROCINFO = 1; 81 const elf_word LLDB_NT_GNU_ABI_OS_LINUX = 0x00; 82 const elf_word LLDB_NT_GNU_ABI_OS_HURD = 0x01; 83 const elf_word LLDB_NT_GNU_ABI_OS_SOLARIS = 0x02; 3059 void ObjectFileELF::DumpELFProgramHeader_p_type(Stream *s, elf_word p_type) { 3080 void ObjectFileELF::DumpELFProgramHeader_p_flags(Stream *s, elf_word p_flags) { 3127 void ObjectFileELF::DumpELFSectionHeader_sh_type(Stream *s, elf_word sh_type) {tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
25 elf::elf_word n_namesz; 26 elf::elf_word n_descsz; 27 elf::elf_word n_type; 357 elf::elf_word p_type); 360 elf::elf_word p_flags); 371 elf::elf_word sh_type);