Searched refs:ElfW (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Delf_mem_image.h50 #include <link.h> // for ElfW
68 const ElfW(Sym) *symbol; // Symbol in the dynamic symbol table.
92 const ElfW(Phdr)* GetPhdr(int index) const;
93 const ElfW(Sym)* GetDynsym(int index) const;
94 const ElfW(Versym)* GetVersym(int index) const;
95 const ElfW(Verdef)* GetVerdef(int index) const;
96 const ElfW(Verdaux)* GetVerdefAux(const ElfW(Verdef) *verdef) const;
97 const char* GetDynstr(ElfW(Word) offset) const;
98 const void* GetSymAddr(const ElfW(Sy
[all...]
H A Delf_mem_image.cc62 static int ElfBind(const ElfW(Sym) *) { function in class:base::__anon15543::ElfClass
66 static int ElfType(const ElfW(Sym) *) { function in class:base::__anon15543::ElfClass
75 static int ElfBind(const ElfW(Sym) *symbol) {
78 static int ElfType(const ElfW(Sym) *symbol) {
86 static int ElfBind(const ElfW(Sym) *symbol) {
89 static int ElfType(const ElfW(Sym) *symbol) {
100 const T* GetTableElement(const ElfW(Ehdr) *ehdr,
101 ElfW(Off) table_offset,
102 ElfW(Word) element_size,
126 const ElfW(Sy
[all...]
H A Dvdso_support.cc94 ElfW(auxv_t) aux;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Delf_mem_image.h50 #include <link.h> // for ElfW
68 const ElfW(Sym) *symbol; // Symbol in the dynamic symbol table.
92 const ElfW(Phdr)* GetPhdr(int index) const;
93 const ElfW(Sym)* GetDynsym(int index) const;
94 const ElfW(Versym)* GetVersym(int index) const;
95 const ElfW(Verdef)* GetVerdef(int index) const;
96 const ElfW(Verdaux)* GetVerdefAux(const ElfW(Verdef) *verdef) const;
97 const char* GetDynstr(ElfW(Word) offset) const;
98 const void* GetSymAddr(const ElfW(Sy
[all...]
H A Delf_mem_image.cc62 static int ElfBind(const ElfW(Sym) *) { function in class:base::__anon15587::ElfClass
66 static int ElfType(const ElfW(Sym) *) { function in class:base::__anon15587::ElfClass
75 static int ElfBind(const ElfW(Sym) *symbol) {
78 static int ElfType(const ElfW(Sym) *symbol) {
86 static int ElfBind(const ElfW(Sym) *symbol) {
89 static int ElfType(const ElfW(Sym) *symbol) {
100 const T* GetTableElement(const ElfW(Ehdr) *ehdr,
101 ElfW(Off) table_offset,
102 ElfW(Word) element_size,
126 const ElfW(Sy
[all...]
H A Dvdso_support.cc94 ElfW(auxv_t) aux;
/external/chromium_org/components/nacl/loader/nonsfi/
H A Delf_loader.cc44 const ElfW(Addr) kNonSfiPageSize = 4096;
45 const ElfW(Addr) kNonSfiPageMask = kNonSfiPageSize - 1;
47 NaClErrorCode ValidateElfHeader(const ElfW(Ehdr)& ehdr) {
87 ElfW(Addr) GetPageStart(ElfW(Addr) addr) {
93 ElfW(Addr) GetPageOffset(ElfW(Addr) addr) {
100 ElfW(Addr) GetPageEnd(ElfW(Addr) addr) {
119 ElfW(Add
[all...]
/external/chromium_org/base/third_party/symbolize/
H A Dsymbolize.h71 #include <link.h> // For ElfW() macro.
84 // If there is no ElfW macro, let's define it by ourself.
85 #ifndef ElfW
87 # define ElfW(type) Elf32_##type macro
89 # define ElfW(type) Elf64_##type macro
100 ElfW(Shdr) *out);
H A Dsymbolize.cc184 ElfW(Ehdr) elf_header;
200 GetSectionHeaderByType(const int fd, ElfW(Half) sh_num, const off_t sh_offset,
201 ElfW(Word) type, ElfW(Shdr) *out) {
203 ElfW(Shdr) buf[16];
230 ElfW(Shdr) *out) {
231 ElfW(Ehdr) elf_header;
236 ElfW(Shdr) shstrtab;
279 uint64_t symbol_offset, const ElfW(Shdr) *strtab,
280 const ElfW(Shd
[all...]
/external/valgrind/main/memcheck/tests/linux/
H A Dproc-auxv.c15 ElfW(auxv_t) auxv;
16 ElfW(auxv_t) *auxv_p;
28 for (auxv_p = (ElfW(auxv_t) *) envp;
/external/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc59 const ElfW(Phdr) *phdr = &(info->dlpi_phdr[j]);
/external/valgrind/main/none/tests/ppc32/
H A Dtest_dfp2.c81 ElfW(auxv_t) * auxv_buf = NULL;
86 auxv_buf = (ElfW(auxv_t)*) __auxv_find();
/external/valgrind/main/none/tests/ppc64/
H A Dtest_dfp2.c81 ElfW(auxv_t) * auxv_buf = NULL;
86 auxv_buf = (ElfW(auxv_t)*) __auxv_find();
/external/qemu/tcg/
H A Dtcg.c2749 ElfW(Ehdr) ehdr;
2750 ElfW(Phdr) phdr;
2751 ElfW(Shdr) shdr[7];
2752 ElfW(Sym) sym[2];
2774 .e_ehsize = sizeof(ElfW(Shdr)),
2775 .e_phentsize = sizeof(ElfW(Phdr)),
2777 .e_shentsize = sizeof(ElfW(Shdr)),
2821 .sh_entsize = sizeof(ElfW(Sym)),
/external/qemu/include/
H A Delf.h1506 #ifndef ElfW
1508 # define ElfW(x) Elf32_ ## x macro
1511 # define ElfW(x) Elf64_ ## x macro
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc473 typedef ElfW(Phdr) Elf_Phdr;
H A Dsanitizer_linux.cc738 typedef ElfW(Phdr) Elf_Phdr;
739 typedef ElfW(Ehdr) Elf_Ehdr;

Completed in 1603 milliseconds