Searched defs:Elf32_Sym (Results 1 – 2 of 2) sorted by relevance
1189 struct Elf32_Sym { struct1190 Elf32_Word st_name; // Symbol name (index into string table)1191 Elf32_Addr st_value; // Value or address associated with the symbol1192 Elf32_Word st_size; // Size of the symbol1193 unsigned char st_info; // Symbol's type and binding attributes1194 unsigned char st_other; // Must be zero; reserved1199 unsigned char getBinding() const { return st_info >> 4; } in getBinding()1200 unsigned char getType() const { return st_info & 0x0f; } in getType()1201 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()1202 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()[all …]
333 } Elf32_Sym; typedef