Home
last modified time | relevance | path

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

/xnu-12377.61.12/iokit/Kernel/
H A DIOServicePMPrivate.h829 class IOPMCompletionQueue : public IOEventSource
831 OSDeclareDefaultStructors( IOPMCompletionQueue );
834 typedef bool (*Action)( IOService *, IOPMRequest *, IOPMCompletionQueue * );
843 static IOPMCompletionQueue * create( IOService * inOwner, Action inAction );
H A DIOServicePM.cpp101 static IOPMCompletionQueue * gIOPMCompletionQueue = NULL;
374 gIOPMCompletionQueue = IOPMCompletionQueue::create( in PMinit()
375 this, OSMemberFunctionCast(IOPMCompletionQueue::Action, in PMinit()
8008 IOPMCompletionQueue * queue ) in actionPMCompletionQueue()
9375 OSDefineMetaClassAndStructors( IOPMCompletionQueue, IOEventSource );
9380 IOPMCompletionQueue *
9381 IOPMCompletionQueue::create( IOService * inOwner, Action inAction ) in create()
9383 IOPMCompletionQueue * me = OSTypeAlloc(IOPMCompletionQueue); in create()
9392 IOPMCompletionQueue::init( IOService * inOwner, Action inAction ) in init()
9404 IOPMCompletionQueue::queuePMRequest( IOPMRequest * request ) in queuePMRequest()
[all …]
/xnu-12377.61.12/iokit/IOKit/
H A DIOServicePM.h48 class IOPMCompletionQueue; variable
H A DIOService.h2375 …bool actionPMCompletionQueue( LIBKERN_CONSUMED IOPMRequest * request, IOPMCompletionQueue * queue …