Lines Matching refs:head
354 idr_list_pre_get(struct idr_list *head, int flag) {
359 idr_list_init(struct idr_list *head)
365 head->next = entry;
372 idr_list_get_new_above(struct idr_list *head,
389 obj_temp = idr_list_find(head, id);
407 node = &head->next[key];
419 idr_list_find(struct idr_list *head,
426 list_for_each(entry, &head->next[key]) {
445 idr_list_remove(struct idr_list *head,
452 list_for_each_safe(entry, temp, &head->next[key]) {
464 idr_list_free(struct idr_list *head)
468 list_for_each_safe(entry, temp, &head->next[key]) {
473 kmem_free(head->next,
475 head->next = NULL;
479 idr_list_empty(struct idr_list *head)
483 empty = list_empty(&(head)->next[key]);