HomeSort by relevance Sort by last modified time
    Searched refs:Elf32_Sym (Results 51 - 75 of 242) sorted by null

1 23 4 5 6 7 8 910

  /external/elfutils/0.153/libelf/
gelf_update_sym.c 93 Elf32_Sym *sym;
105 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data_scn->d.d_size))
111 sym = &((Elf32_Sym *) data_scn->d.d_buf)[ndx];
gelf_getsymshndx.c 107 Elf32_Sym *src;
113 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata->d_size))
119 src = &((Elf32_Sym *) symdata->d_buf)[ndx];
gelf_update_symshndx.c 119 Elf32_Sym *sym;
131 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata_scn->d.d_size))
137 sym = &((Elf32_Sym *) symdata_scn->d.d_buf)[ndx];
  /art/runtime/
elf_file.h 83 Elf32_Sym* GetSymbol(Elf32_Word section_type, Elf32_Word i) const;
122 Elf32_Sym* GetSymbolSectionStart(Elf32_Word section_type) const;
132 typedef std::map<std::string, Elf32_Sym*> SymbolTable;
137 const Elf32_Sym* FindDynamicSymbol(const std::string& symbol_name) const;
156 Elf32_Sym* FindSymbolByName(Elf32_Word section_type,
189 Elf32_Sym* symtab_section_start_;
190 Elf32_Sym* dynsym_section_start_;
elf_utils.h 70 inline void SetBindingAndType(Elf32_Sym* sym, unsigned char b, unsigned char t) {
  /development/ndk/platforms/android-9/arch-mips/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
module.h 54 #define Elf_Sym Elf32_Sym
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
link.h 47 extern Elf32_Addr la_i86_gnu_pltenter (Elf32_Sym *__sym, unsigned int __ndx,
54 extern unsigned int la_i86_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
link.h 47 extern Elf32_Addr la_i86_gnu_pltenter (Elf32_Sym *__sym, unsigned int __ndx,
54 extern unsigned int la_i86_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
  /external/chromium_org/third_party/android_crazy_linker/src/src/
elf_traits.h 22 typedef Elf32_Sym Sym;
  /ndk/sources/android/crazy_linker/src/
elf_traits.h 22 typedef Elf32_Sym Sym;
  /external/elfutils/0.153/src/
xelf.h 47 # define XElf_Sym Elf32_Sym
75 # define XElf_Sym_vardef(name) Elf32_Sym *name
77 name = &((Elf32_Sym *) (data)->d_buf)[idx]
79 name = &((Elf32_Sym *) (data)->d_buf)[idx]
81 (name1 = &((Elf32_Sym *) ((data)->d_buf))[idx]); \
88 ((Elf32_Sym *) ((data)->d_buf))[idx] = *name1; \
153 case ELF_T_SYM: fsize = sizeof (Elf32_Sym); break; \
  /art/compiler/
elf_writer_quick.cc 161 // | Elf32_Sym STN_UNDEF |
162 // | Elf32_Sym oatdata |
163 // | Elf32_Sym oatexec |
164 // | Elf32_Sym oatlastword |
409 dynsym_builder_.section_.sh_size = dynsym_builder_.GetSize() * sizeof(Elf32_Sym);
454 symtab_builder_.section_.sh_size = symtab_builder_.GetSize() * sizeof(Elf32_Sym);
518 std::vector<Elf32_Sym> dynsym = dynsym_builder_.GenerateSymtab();
519 CHECK_EQ(dynsym.size() * sizeof(Elf32_Sym), dynsym_builder_.section_.sh_size);
520 std::vector<Elf32_Sym> symtab;
523 CHECK_EQ(symtab.size() * sizeof(Elf32_Sym), symtab_builder_.section_.sh_size)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 56 typedef llvm::ELF::Elf32_Sym Symbol;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
link.h 182 extern uintptr_t la_symbind32 (Elf32_Sym *__sym, unsigned int __ndx,

Completed in 1480 milliseconds

1 23 4 5 6 7 8 910