Home
last modified time | relevance | path

Searched refs:st_info (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Delf.h1398 unsigned char st_info; // Symbol's type and binding attributes member
1404 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1405 unsigned char getType() const { return st_info & 0x0f; } in getType()
1409 st_info = (b << 4) + (t & 0x0f); in setBindingAndType()
1414 static inline unsigned char ELF32_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } in ELF32_ST_TYPE() argument
1415 static inline unsigned char ELF64_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } in ELF64_ST_TYPE() argument
1421 unsigned char st_info; // Symbol's type and binding attributes member
1429 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1430 unsigned char getType() const { return st_info & 0x0f; } in getType()
1434 st_info = (b << 4) + (t & 0x0f); in setBindingAndType()
Delf_utils.h75 sym->st_info = (b << 4) + (t & 0x0f); in SetBindingAndType()
Delf_file.cc873 ? ELF64_ST_TYPE(symbol->st_info) in FindSymbolByName()
874 : ELF32_ST_TYPE(symbol->st_info); in FindSymbolByName()
888 (symbol->st_info != result.first->second->st_info) || in FindSymbolByName()
/art/compiler/
Delf_builder.h392 sym.st_info = (binding << 4) + (type & 0xf); in Add()