Lines Matching defs:list
182 /* Need to modify the list from a talloc destructor */
203 struct setent_req_list **list,
214 DLIST_ADD_END(*list, entry, struct setent_req_list *);
215 entry->head = list;
221 void setent_notify(struct setent_req_list **list, errno_t err)
226 while ((reql = *list) != NULL) {
228 * the request, removing it from the list.
236 if (reql == *list) {
244 *list = (*list)->next;
249 void setent_notify_done(struct setent_req_list **list)
251 return setent_notify(list, EOK);