Home
last modified time | relevance | path

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

/art/runtime/
Delf.h1397 unsigned char st_info; // Symbol's type and binding attributes member
1403 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1404 unsigned char getType() const { return st_info & 0x0f; } in getType()
1408 st_info = (b << 4) + (t & 0x0f); in setBindingAndType()
1413 static inline unsigned char ELF32_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } in ELF32_ST_TYPE() argument
1419 unsigned char st_info; // Symbol's type and binding attributes member
1427 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1428 unsigned char getType() const { return st_info & 0x0f; } in getType()
1432 st_info = (b << 4) + (t & 0x0f); in setBindingAndType()
Delf_utils.h71 sym->st_info = (b << 4) + (t & 0x0f); in SetBindingAndType()
Delf_file.cc871 unsigned char type = ELF32_ST_TYPE(symbol->st_info); in FindSymbolByName()
885 (symbol->st_info != result.first->second->st_info) || in FindSymbolByName()
/art/patchoat/
Dpatchoat.cc725 uint8_t sttype = ELF32_ST_TYPE(syms->st_info); in PatchSymbols()
/art/compiler/
Delf_writer_quick.cc684 sym.st_info = it->info_; in GenerateSymtab()