Lines Matching refs:next
11 * The above copyright notice and this permission notice (including the next
66 struct ralloc_header *next;
92 info->next = parent->child;
95 if (info->next != NULL)
96 info->next->prev = info;
148 info->prev->next = info;
150 if (info->next != NULL)
151 info->next->prev = info;
155 for (child = info->child; child != NULL; child = child->next)
217 info->parent->child = info->next;
220 info->prev->next = info->next;
222 if (info->next != NULL)
223 info->next->prev = info->prev;
227 info->next = NULL;
237 info->child = temp->next;