• Home
  • Raw
  • Download

Lines Matching refs:load_bias

585                                      ElfW(Addr) load_bias, int extra_prot_flags) {  in _phdr_table_set_load_prot()
594 ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias; in _phdr_table_set_load_prot()
595 ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias; in _phdr_table_set_load_prot()
625 size_t phdr_count, ElfW(Addr) load_bias) { in phdr_table_protect_segments()
626 return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bias, 0); in phdr_table_protect_segments()
646 size_t phdr_count, ElfW(Addr) load_bias) { in phdr_table_unprotect_segments()
647 return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bias, PROT_WRITE); in phdr_table_unprotect_segments()
654 ElfW(Addr) load_bias, int prot_flags) { in _phdr_table_set_gnu_relro_prot()
679 ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias; in _phdr_table_set_gnu_relro_prot()
680 ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias; in _phdr_table_set_gnu_relro_prot()
709 size_t phdr_count, ElfW(Addr) load_bias) { in phdr_table_protect_gnu_relro()
710 return _phdr_table_set_gnu_relro_prot(phdr_table, phdr_count, load_bias, PROT_READ); in phdr_table_protect_gnu_relro()
727 ElfW(Addr) load_bias, in phdr_table_serialize_gnu_relro()
738 ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias; in phdr_table_serialize_gnu_relro()
739 ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias; in phdr_table_serialize_gnu_relro()
774 ElfW(Addr) load_bias, in phdr_table_map_gnu_relro()
800 ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr) + load_bias; in phdr_table_map_gnu_relro()
801 ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz) + load_bias; in phdr_table_map_gnu_relro()
870 ElfW(Addr) load_bias, in phdr_table_get_arm_exidx()
880 *arm_exidx = reinterpret_cast<ElfW(Addr)*>(load_bias + phdr->p_vaddr); in phdr_table_get_arm_exidx()
904 ElfW(Addr) load_bias, ElfW(Dyn)** dynamic, in phdr_table_get_dynamic_section()
910 *dynamic = reinterpret_cast<ElfW(Dyn)*>(load_bias + phdr.p_vaddr); in phdr_table_get_dynamic_section()
929 ElfW(Addr) load_bias) { in phdr_table_get_interpreter_name()
933 return reinterpret_cast<const char*>(load_bias + phdr.p_vaddr); in phdr_table_get_interpreter_name()