Home | History | Annotate | Download | only in bionic

Lines Matching refs:next

126         entry = entry->next;
157 entry->next = gHashTable.slots[slot];
165 if (entry->next != NULL) {
166 entry->next->prev = entry;
188 e1 = e1->next;
199 HashEntry* next = entry->next;
201 if (prev != NULL) entry->prev->next = next;
202 if (next != NULL) entry->next->prev = prev;
205 // we are the head of the list. set the head to be next
206 gHashTable.slots[entry->slot] = entry->next;