Searched defs:Elf64_Sym (Results 1 – 1 of 1) sorted by relevance
1418 struct Elf64_Sym { struct1419 Elf64_Word st_name; // Symbol name (index into string table)1420 unsigned char st_info; // Symbol's type and binding attributes1421 unsigned char st_other; // Must be zero; reserved1422 Elf64_Half st_shndx; // Which section (header tbl index) it's defined in1423 Elf64_Addr st_value; // Value or address associated with the symbol1424 Elf64_Xword st_size; // Size of the symbol1428 unsigned char getBinding() const { return st_info >> 4; } in getBinding()1429 unsigned char getType() const { return st_info & 0x0f; } in getType()1430 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]