/bionic/linker/ |
dlfcn.c | 109 bind = ELF32_ST_BIND(sym->st_info); 198 st_info: STB_GLOBAL << 4, 203 st_info: STB_GLOBAL << 4, 208 st_info: STB_GLOBAL << 4, 213 st_info: STB_GLOBAL << 4, 218 st_info: STB_GLOBAL << 4, 224 st_info: STB_GLOBAL << 4, 230 st_info: STB_GLOBAL << 4, 236 st_info: STB_GLOBAL << 4,
|
/frameworks/compile/linkloader/include/ |
ELFSymbol.h | 54 byte_t st_info; member in class:ELFSymbol_CRTP 91 return ELF_ST_TYPE(st_info); 95 return ELF_ST_BIND(st_info); 169 AR & st_info; local 191 AR & st_info; local
|
/external/elfutils/libelf/ |
abstract.h | 104 TYPE_EXTRA (unsigned char st_info;) \ 105 TYPE_XLATE (tdest->st_info = tsrc->st_info;) \ 113 TYPE_EXTRA (unsigned char st_info;) \ 114 TYPE_XLATE (tdest->st_info = tsrc->st_info;) \
|
gelf_update_sym.c | 85 /* Please note that we can simply copy the `st_info' element since 88 COPY (st_info);
|
gelf_getsym.c | 73 /* Please note that we can simply copy the `st_info' element since 76 COPY (st_info);
|
gelf_getsymshndx.c | 93 /* Please note that we can simply copy the `st_info' element since 96 COPY (st_info);
|
gelf_update_symshndx.c | 111 /* Please note that we can simply copy the `st_info' element since 114 COPY (st_info);
|
/external/elfutils/tests/ |
asm-tst8.c | 151 if (GELF_ST_TYPE (sym->st_info) != STT_FILE) 154 (unsigned int) GELF_ST_TYPE (sym->st_info));
|
/bionic/libc/kernel/common/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/development/ndk/platforms/android-3/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/external/llvm/include/llvm/Support/ |
ELF.h | 576 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::ELF::Elf32_Sym 582 unsigned char getBinding() const { return st_info >> 4; } 583 unsigned char getType() const { return st_info & 0x0f; } 587 st_info = (b << 4) + (t & 0x0f); 594 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::ELF::Elf64_Sym 602 unsigned char getBinding() const { return st_info >> 4; } 603 unsigned char getType() const { return st_info & 0x0f; } 607 st_info = (b << 4) + (t & 0x0f);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/ |
elf.h | 158 unsigned char st_info; member in struct:elf32_sym 165 unsigned char st_info; member in struct:elf64_sym
|
/external/elfutils/src/ |
nm.c | 807 GELF_ST_BIND (syms[cnt].sym.st_info), 809 ebl_symbol_type_name (ebl, GELF_ST_TYPE (syms[cnt].sym.st_info), 825 int local_p = GELF_ST_BIND (sym->st_info) == STB_LOCAL; 835 char result = "NDTSFB "[GELF_ST_TYPE (sym->st_info)]; 886 ? (GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK 895 ? (GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK 945 ? (GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK ? "*" : " ") 1061 || (hide_local && GELF_ST_BIND (sym->st_info) == STB_LOCAL)) 1073 && GELF_ST_BIND (sym->st_info) != STB_LOCAL [all...] |
/external/llvm/test/Scripts/ |
elf-dump | 118 st_info = f.read8() 119 print " ('st_bind', %s)" % common_dump.HexDump((st_info >> 4)) 120 print " ('st_type', %s)" % common_dump.HexDump((st_info & 0xf))
|
/external/kernel-headers/original/linux/ |
elf.h | 156 unsigned char st_info; member in struct:elf32_sym 163 unsigned char st_info; /* Type and binding attributes */ member in struct:elf64_sym
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
elf.h | 174 unsigned char st_info; member in struct:elf32_sym 181 unsigned char st_info; /* Type and binding attributes */ member in struct:elf64_sym
|
/external/libvpx/build/make/ |
obj_int_extract.c | 468 ENDIAN_ASSIGN_IN_PLACE(sym32->st_info); 478 ENDIAN_ASSIGN_IN_PLACE(sym64->st_info); 569 /* if (ELF32_ST_TYPE(sym.st_info) == STT_OBJECT && sym.st_name) 576 if (ELF32_ST_TYPE(sym.st_info) == STT_OBJECT 661 /* if (ELF64_ST_TYPE(sym.st_info) == STT_OBJECT && sym.st_name) 668 if (ELF64_ST_TYPE(sym.st_info) == STT_OBJECT
|