Searched defs:Elf32_Sym (Results 1 – 5 of 5) sorted by relevance
1241 struct Elf32_Sym { struct1242 Elf32_Word st_name; // Symbol name (index into string table)1243 Elf32_Addr st_value; // Value or address associated with the symbol1244 Elf32_Word st_size; // Size of the symbol1245 unsigned char st_info; // Symbol's type and binding attributes1246 unsigned char st_other; // Must be zero; reserved1247 Elf32_Half st_shndx; // Which section (header table index) it's defined in1251 unsigned char getBinding() const { return st_info >> 4; } in getBinding()1252 unsigned char getType() const { return st_info & 0x0f; } in getType()1253 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
128 Elf32_Sym; typedef
987 } Elf32_Sym; typedef
393 } Elf32_Sym; typedef
384 } Elf32_Sym; typedef