Lines Matching refs:listp
195 void pack_ptr_list(struct ptr_list **listp) in pack_ptr_list() argument
197 struct ptr_list *head = *listp; in pack_ptr_list()
209 *listp = NULL; in pack_ptr_list()
217 *listp = next; in pack_ptr_list()
260 void **__add_ptr_list(struct ptr_list **listp, void *ptr) in __add_ptr_list() argument
262 struct ptr_list *list = *listp; in __add_ptr_list()
272 *listp = newlist; in __add_ptr_list()
298 void **__add_ptr_list_tag(struct ptr_list **listp, void *ptr, unsigned long tag) in __add_ptr_list_tag() argument
306 return __add_ptr_list(listp, ptr); in __add_ptr_list_tag()
442 void copy_ptr_list(struct ptr_list **listp, struct ptr_list *src) in copy_ptr_list() argument
450 head = *listp; in copy_ptr_list()
452 *listp = src; in copy_ptr_list()
495 void __free_ptr_list(struct ptr_list **listp) in __free_ptr_list() argument
497 struct ptr_list *tmp, *list = *listp; in __free_ptr_list()
509 *listp = NULL; in __free_ptr_list()