Lines Matching refs:nextInList
63 nextPowerSource = nextInList(nextPowerSource); in addToList()
67 newPowerSource->nextInList = firstItem; in addToList()
91 IOPMPowerSourceList::nextInList(IOPMPowerSource *currentItem) in nextInList() function in IOPMPowerSourceList
94 return currentItem->nextInList; in nextInList()
127 firstItem = item->nextInList; in removeFromList()
132 while (item->nextInList != NULL) { in removeFromList()
133 if (item->nextInList == theItem) { in removeFromList()
134 temp = item->nextInList; in removeFromList()
135 item->nextInList = temp->nextInList; in removeFromList()
140 item = item->nextInList; in removeFromList()
160 firstItem = next->nextInList; in free()