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

/art/runtime/
H A Delf.h1401 unsigned char st_info; // Symbol's type and binding attributes member in struct:Elf32_Sym
1407 unsigned char getBinding() const { return st_info >> 4; }
1408 unsigned char getType() const { return st_info & 0x0f; }
1412 st_info = (b << 4) + (t & 0x0f);
1417 static inline unsigned char ELF32_ST_BIND(unsigned char st_info) { return st_info >> 4; } argument
1418 static inline unsigned char ELF32_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } argument
1419 static inline unsigned char ELF64_ST_BIND(unsigned char st_info) { return st_info >> argument
1420 ELF64_ST_TYPE(unsigned char st_info) argument
1426 unsigned char st_info; // Symbol's type and binding attributes member in struct:Elf64_Sym
[all...]
H A Delf_utils.h75 sym->st_info = (b << 4) + (t & 0x0f);
H A Delf_file.cc872 ? ELF64_ST_TYPE(symbol->st_info)
873 : ELF32_ST_TYPE(symbol->st_info);
887 (symbol->st_info != result.first->second->st_info) ||
/art/compiler/linker/
H A Delf_builder.h387 sym.st_info = (binding << 4) + (type & 0xf);

Completed in 59 milliseconds