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

References

tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
  162   elf_xword sh_flags;     ///< Section attributes.
  165   elf_xword sh_size;      ///< Number of bytes occupied in the file.
  168   elf_xword sh_addralign; ///< Power of two alignment constraint.
  169   elf_xword sh_entsize;   ///< Byte size of each section entry.
  198   elf_xword p_filesz; ///< Byte size of the segment in file.
  199   elf_xword p_memsz;  ///< Byte size of the segment in memory.
  200   elf_xword p_align;  ///< Segment alignment constraint.
  226   elf_xword st_size;      ///< Size of the symbol or zero.
  279     elf_xword d_val; ///< Integer value of the table entry.
  307   elf_xword r_info;  ///< symbol index and type of relocation.
  348   elf_xword r_info;    ///< Symbol index and type of relocation.
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1779     uint32_t Log2Align = llvm::Log2_64(std::max<elf_xword>(PHdr.p_align, 1));
 1815     elf::elf_xword log2align =
 2378   const elf_xword num_relocations = rel_hdr->sh_size / rel_hdr->sh_entsize;
 2382   elf_xword plt_entsize =
 2404   elf_xword plt_offset = plt_hdr->sh_size - num_relocations * plt_entsize;
 2422   const elf_xword num_relocations = rel_hdr->sh_size / rel_hdr->sh_entsize;
 3156                                                   elf_xword sh_flags) {
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  374                                             elf::elf_xword sh_flags);