Lines Matching refs:headp
81 struct sym_head *headp; member
176 #define CHECK_SYM_PRINT_DATA(p) (p->headp == NULL || p->sh_num == 0 || \
654 get_sym(Elf *elf, struct sym_head *headp, int shnum, size_t dynndx, in get_sym() argument
671 assert(headp != NULL); in get_sym()
710 if (sym_list_insert(headp, sym_name, in get_sym()
1441 p_data.headp = &list_head; in read_elf()
1856 sym_list_dest(struct sym_head *headp) in sym_list_dest() argument
1860 if (headp == NULL) in sym_list_dest()
1863 ep = STAILQ_FIRST(headp); in sym_list_dest()
1874 sym_list_insert(struct sym_head *headp, const char *name, const GElf_Sym *sym) in sym_list_insert() argument
1878 if (headp == NULL || name == NULL || sym == NULL) in sym_list_insert()
1902 STAILQ_INSERT_TAIL(headp, e, sym_entries); in sym_list_insert()
2016 STAILQ_FOREACH(ep, p->headp, sym_entries) { in sym_list_sort()