• Home
  • Raw
  • Download

Lines Matching refs:elf_w

41 extern size_t elf_w (memory_read) (  in elf_w()  function
113 static bool elf_w (section_table_offset) (struct elf_image* ei, Elf_W(Ehdr)* ehdr, Elf_W(Off)* offs… in elf_w() function
130 static bool elf_w (string_table_offset) ( in elf_w() function
158 static bool elf_w (lookup_symbol_memory) ( in elf_w() function
162 if (!elf_w (section_table_offset) (ei, ehdr, &shdr_offset)) { in elf_w()
179 if (!elf_w (string_table_offset) (ei, shdr.sh_link, ehdr, &strtab_offset)) { in elf_w()
219 size_t bytes_read = elf_w (memory_read) ( in elf_w()
249 static bool elf_w (get_load_offset_memory) ( in elf_w() function
276 static Elf_W(Shdr)* elf_w (section_table) (struct elf_image* ei) { in Elf_W()
289 static char* elf_w (string_table) (struct elf_image* ei, int section) { in elf_w() function
311 static bool elf_w (lookup_symbol_mapped) ( in elf_w() function
315 Elf_W(Shdr)* shdr = elf_w (section_table) (ei); in elf_w()
330 char* strtab = elf_w (string_table) (ei, shdr->sh_link); in elf_w()
391 static bool elf_w (get_load_offset_mapped) ( in elf_w() function
406 static Elf_W(Addr) elf_w (get_min_vaddr_mapped) (struct elf_image *ei) { in elf_w() function
421 static inline bool elf_w (lookup_symbol) ( in elf_w() function
436 return elf_w (lookup_symbol_mapped) (as, ip, ei, load_offset, buf, buf_len, offp); in elf_w()
438 return elf_w (lookup_symbol_memory) (as, ip, ei, load_offset, buf, buf_len, offp, ehdr); in elf_w()
442 static bool elf_w (get_load_offset) ( in elf_w() function
446 return elf_w (get_load_offset_mapped) (ei, segbase, mapoff, load_offset); in elf_w()
448 return elf_w (get_load_offset_memory) (ei, segbase, mapoff, ehdr, load_offset); in elf_w()
462 elf_w (xz_decompress) (uint8_t* src, size_t src_size, in elf_w() function
518 elf_w (find_section_mapped) (struct elf_image *ei, const char* name, in elf_w() function
529 shdr = elf_w (section_table) (ei); in elf_w()
534 strtab = elf_w (string_table) (ei, ehdr->e_shstrndx); in elf_w()
564 HIDDEN bool elf_w (get_proc_name_in_image) ( in elf_w() function
570 if (!elf_w (get_load_offset) (ei, segbase, mapoff, &ehdr, &load_offset)) { in elf_w()
574 if (elf_w (lookup_symbol) (as, ip, ei, load_offset, buf, buf_len, offp, &ehdr) != 0) { in elf_w()
585 mdi.valid = elf_w (valid_object_mapped) (&mdi); in elf_w()
589 if (elf_w (find_section_mapped) (ei, ".text", NULL, NULL, &ei_text_address) && in elf_w()
590 elf_w (find_section_mapped) (&mdi, ".text", NULL, NULL, &mdi_text_address)) { in elf_w()
593 bool ret_val = elf_w (lookup_symbol) (as, ip, &mdi, load_offset, buf, buf_len, offp, &ehdr); in elf_w()
599 HIDDEN bool elf_w (get_proc_name) ( in elf_w() function
609 return elf_w (get_proc_name_in_image) (as, &ei, segbase, mapoff, ip, buf, buf_len, offp); in elf_w()
612 HIDDEN bool elf_w (get_load_base) (struct elf_image* ei, unw_word_t mapoff, unw_word_t* load_base) { in elf_w() function