Searched defs:Elf32_Sym (Results 1 – 6 of 6) sorted by relevance
1409 struct Elf32_Sym { struct1410 Elf32_Word st_name; // Symbol name (index into string table)1411 Elf32_Addr st_value; // Value or address associated with the symbol1412 Elf32_Word st_size; // Size of the symbol1413 unsigned char st_info; // Symbol's type and binding attributes1414 unsigned char st_other; // Must be zero; reserved1415 Elf32_Half st_shndx; // Which section (header table index) it's defined in1419 unsigned char getBinding() const { return st_info >> 4; } in getBinding()1420 unsigned char getType() const { return st_info & 0x0f; } in getType()1421 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
211 } Elf32_Sym; typedef
189 } Elf32_Sym; typedef
1230 } Elf32_Sym; typedef
390 } Elf32_Sym; typedef
384 } Elf32_Sym; typedef