Lines Matching refs:next
33 struct ap_slotmem_instance_t *next; /* location of next allocated segment */
69 ap_slotmem_instance_t *next = globallistmem;
81 if (next) {
83 if (strcmp(next->name, fname) == 0) {
85 *new = next;
88 if (!next->next) {
91 next = next->next;
108 res->next = NULL;
114 next->next = res;
122 ap_slotmem_instance_t *next = globallistmem;
135 while (next) {
136 if (strcmp(next->name, fname) == 0) {
138 *new = next;
139 *item_size = next->size;
140 *item_num = next->num;
143 next = next->next;