Home
last modified time | relevance | path

Searched defs:Elf32_Sym (Results 1 – 1 of 1) sorted by relevance

/art/runtime/
Delf.h1397 struct Elf32_Sym { struct
1398 Elf32_Word st_name; // Symbol name (index into string table)
1399 Elf32_Addr st_value; // Value or address associated with the symbol
1400 Elf32_Word st_size; // Size of the symbol
1401 unsigned char st_info; // Symbol's type and binding attributes
1402 unsigned char st_other; // Must be zero; reserved
1403 Elf32_Half st_shndx; // Which section (header table index) it's defined in
1407 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1408 unsigned char getType() const { return st_info & 0x0f; } in getType()
1409 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()
[all …]