Home
last modified time | relevance | path

Searched refs:nextInList (Results 1 – 9 of 9) sorted by relevance

/xnu-11215/iokit/Kernel/
H A DIOPMPowerSourceList.cpp63 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()
[all …]
H A DIOPMinformeeList.cpp124 newInformee->nextInList = firstItem; in addToList()
158 firstItem = item->nextInList; in removeFromList()
164 while (item->nextInList != NULL) { in removeFromList()
165 if (item->nextInList->whatObject == theItem) { in removeFromList()
166 temp = item->nextInList; in removeFromList()
167 item->nextInList = temp->nextInList; in removeFromList()
172 item = item->nextInList; in removeFromList()
198 IOPMinformeeList::nextInList( IOPMinformee * currentItem ) in nextInList() function in IOPMinformeeList
201 return currentItem->nextInList; in nextInList()
234 nextObject = nextInList(nextObject); in findItem()
[all …]
H A DIOPMPowerSource.cpp68 nextInList = NULL; in init()
H A DIOServicePM.cpp3786 informee = list->nextInList( informee ); in notifyInterestedDrivers()
5647 nextObject = fInterestedDrivers->nextInList(nextObject); in ackTimerTick()
/xnu-11215/iokit/IOKit/pwr_mgt/
H A DIOPMinformee.h49 IOPMinformee * nextInList; // linkage pointer variable
H A DIOPMPowerSourceList.h52 LIBKERN_RETURNS_NOT_RETAINED IOPMPowerSource *nextInList(IOPMPowerSource *currentItem);
H A DIOPMinformeeList.h61 LIBKERN_RETURNS_NOT_RETAINED IOPMinformee * nextInList( IOPMinformee * currentItem );
H A DIOPMPowerSource.h212 IOPMPowerSource *nextInList; variable
/xnu-11215/tools/lldbmacros/
H A Dioreg.py623 next = CastIOKitClass(next.nextInList, 'IOPMinformee *')