Home
last modified time | relevance | path

Searched refs:IOPMCompletionQueue (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.81.4/iokit/Kernel/
H A DIOServicePMPrivate.h815 class IOPMCompletionQueue : public IOEventSource
817 OSDeclareDefaultStructors( IOPMCompletionQueue );
820 typedef bool (*Action)( IOService *, IOPMRequest *, IOPMCompletionQueue * );
829 static IOPMCompletionQueue * create( IOService * inOwner, Action inAction );
H A DIOServicePM.cpp100 static IOPMCompletionQueue * gIOPMCompletionQueue = NULL;
373 gIOPMCompletionQueue = IOPMCompletionQueue::create( in PMinit()
374 this, OSMemberFunctionCast(IOPMCompletionQueue::Action, in PMinit()
7902 IOPMCompletionQueue * queue ) in actionPMCompletionQueue()
9260 OSDefineMetaClassAndStructors( IOPMCompletionQueue, IOEventSource );
9265 IOPMCompletionQueue *
9266 IOPMCompletionQueue::create( IOService * inOwner, Action inAction ) in create()
9268 IOPMCompletionQueue * me = OSTypeAlloc(IOPMCompletionQueue); in create()
9277 IOPMCompletionQueue::init( IOService * inOwner, Action inAction ) in init()
9289 IOPMCompletionQueue::queuePMRequest( IOPMRequest * request ) in queuePMRequest()
[all …]
/xnu-11215.81.4/iokit/IOKit/
H A DIOServicePM.h48 class IOPMCompletionQueue; variable
H A DIOService.h2365 …bool actionPMCompletionQueue( LIBKERN_CONSUMED IOPMRequest * request, IOPMCompletionQueue * queue …