Searched defs:Elf32_Sym (Results 1 – 4 of 4) sorted by relevance
795 struct Elf32_Sym { struct796 Elf32_Word st_name; // Symbol name (index into string table)797 Elf32_Addr st_value; // Value or address associated with the symbol798 Elf32_Word st_size; // Size of the symbol799 unsigned char st_info; // Symbol's type and binding attributes800 unsigned char st_other; // Must be zero; reserved801 Elf32_Half st_shndx; // Which section (header table index) it's defined in805 unsigned char getBinding() const { return st_info >> 4; } in getBinding()806 unsigned char getType() const { return st_info & 0x0f; } in getType()807 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
189 } Elf32_Sym; typedef
415 } Elf32_Sym; typedef
384 } Elf32_Sym; typedef