Searched defs:Elf32_Sym (Results 1 – 10 of 10) sorted by relevance
824 struct Elf32_Sym { struct825 Elf32_Word st_name; // Symbol name (index into string table)826 Elf32_Addr st_value; // Value or address associated with the symbol827 Elf32_Word st_size; // Size of the symbol828 unsigned char st_info; // Symbol's type and binding attributes829 unsigned char st_other; // Must be zero; reserved830 Elf32_Half st_shndx; // Which section (header table index) it's defined in834 unsigned char getBinding() const { return st_info >> 4; } in getBinding()835 unsigned char getType() const { return st_info & 0x0f; } in getType()836 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
820 struct Elf32_Sym { struct821 Elf32_Word st_name; // Symbol name (index into string table)822 Elf32_Addr st_value; // Value or address associated with the symbol823 Elf32_Word st_size; // Size of the symbol824 unsigned char st_info; // Symbol's type and binding attributes825 unsigned char st_other; // Must be zero; reserved826 Elf32_Half st_shndx; // Which section (header table index) it's defined in830 unsigned char getBinding() const { return st_info >> 4; } in getBinding()831 unsigned char getType() const { return st_info & 0x0f; } in getType()832 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
991 struct Elf32_Sym { struct992 Elf32_Word st_name; // Symbol name (index into string table)993 Elf32_Addr st_value; // Value or address associated with the symbol994 Elf32_Word st_size; // Size of the symbol995 unsigned char st_info; // Symbol's type and binding attributes996 unsigned char st_other; // Must be zero; reserved997 Elf32_Half st_shndx; // Which section (header table index) it's defined in1001 unsigned char getBinding() const { return st_info >> 4; } in getBinding()1002 unsigned char getType() const { return st_info & 0x0f; } in getType()1003 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()[all …]
195 } Elf32_Sym; typedef
333 } Elf32_Sym; typedef
415 } Elf32_Sym; typedef
455 } Elf32_Sym; typedef
528 } Elf32_Sym; typedef
16971 typedef struct elf32_sym Elf32_Sym; typedef