Searched defs:phdr_count (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Dlinker_phdr.h47 size_t phdr_count() { return phdr_num_; } function in class:ElfReader
83 size_t phdr_table_get_load_size(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
86 int phdr_table_protect_segments(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias); variable
88 int phdr_table_unprotect_segments(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias); variable
90 int phdr_table_protect_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias); variable
92 int phdr_table_serialize_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias, variable
95 int phdr_table_map_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias, variable
99 int phdr_table_get_arm_exidx(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias, variable
103 void phdr_table_get_dynamic_section(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
H A Dlinker_phdr.cpp249 size_t phdr_table_get_load_size(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
256 for (size_t i = 0; i < phdr_count; ++i) {
403 static int _phdr_table_set_load_prot(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
406 const ElfW(Phdr)* phdr_limit = phdr + phdr_count;
432 * phdr_count -> number of entries in tables
437 int phdr_table_protect_segments(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias) { variable
438 return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bias, 0);
452 * phdr_count -> number of entries in tables
457 int phdr_table_unprotect_segments(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias) { variable
458 return _phdr_table_set_load_prot(phdr_table, phdr_count, load_bia
464 static int _phdr_table_set_gnu_relro_prot(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
519 int phdr_table_protect_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias) { variable
535 int phdr_table_serialize_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias, variable
580 int phdr_table_map_gnu_relro(const ElfW(Phdr)* phdr_table, size_t phdr_count, ElfW(Addr) load_bias, variable
675 int phdr_table_get_arm_exidx(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
710 void phdr_table_get_dynamic_section(const ElfW(Phdr)* phdr_table, size_t phdr_count, variable
[all...]

Completed in 34 milliseconds