Home
last modified time | relevance | path

Searched refs:nextObject (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/iokit/Kernel/
H A DIOPMinformeeList.cpp227 IOPMinformee * nextObject; in findItem() local
229 nextObject = firstInList(); in findItem()
230 while (nextObject != NULL) { in findItem()
231 if (nextObject->whatObject == driverOrChild) { in findItem()
232 return nextObject; in findItem()
234 nextObject = nextInList(nextObject); in findItem()
H A DIOServicePM.cpp5539 IOPMinformee * nextObject; in ackTimerTick() local
5627 nextObject = fInterestedDrivers->firstInList(); in ackTimerTick()
5629 while (nextObject != NULL) { in ackTimerTick()
5630 if (nextObject->timer > 0) { in ackTimerTick()
5631 nextObject->timer--; in ackTimerTick()
5633 if (nextObject->timer == 0) { in ackTimerTick()
5634 uint64_t nsec = computeTimeDeltaNS(&nextObject->startTime); in ackTimerTick()
5636 nextObject->whatObject->setProperty(kIOPMTardyAckPSCKey, kOSBooleanTrue); in ackTimerTick()
5638 nextObject->whatObject->getName(), in ackTimerTick()
5640 OBFUSCATE(nextObject->whatObject), fName, fCurrentPowerState, fHeadNotePowerState, in ackTimerTick()
[all …]
/xnu-11215/libkern/libkern/c++/
H A DOSCollection.h213 OSObject ** nextObject) const = 0;