Searched defs:Elf64_Sym (Results 1 – 4 of 4) sorted by relevance
815 struct Elf64_Sym { struct816 Elf64_Word st_name; // Symbol name (index into string table)817 unsigned char st_info; // Symbol's type and binding attributes818 unsigned char st_other; // Must be zero; reserved819 Elf64_Half st_shndx; // Which section (header tbl index) it's defined in820 Elf64_Addr st_value; // Value or address associated with the symbol821 Elf64_Xword st_size; // Size of the symbol825 unsigned char getBinding() const { return st_info >> 4; } in getBinding()826 unsigned char getType() const { return st_info & 0x0f; } in getType()827 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
198 } Elf64_Sym; typedef
425 } Elf64_Sym; typedef
394 } Elf64_Sym; typedef