Home
last modified time | relevance | path

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

/xnu-8792.41.9/iokit/Kernel/
H A DIOServicePMPrivate.h797 class IOPMCompletionQueue : public IOEventSource
799 OSDeclareDefaultStructors( IOPMCompletionQueue );
802 typedef bool (*Action)( IOService *, IOPMRequest *, IOPMCompletionQueue * );
811 static IOPMCompletionQueue * create( IOService * inOwner, Action inAction );
H A DIOServicePM.cpp97 static IOPMCompletionQueue * gIOPMCompletionQueue = NULL;
363 gIOPMCompletionQueue = IOPMCompletionQueue::create( in PMinit()
364 this, OSMemberFunctionCast(IOPMCompletionQueue::Action, in PMinit()
7626 IOPMCompletionQueue * queue ) in actionPMCompletionQueue()
8974 OSDefineMetaClassAndStructors( IOPMCompletionQueue, IOEventSource );
8979 IOPMCompletionQueue *
8980 IOPMCompletionQueue::create( IOService * inOwner, Action inAction ) in create()
8982 IOPMCompletionQueue * me = OSTypeAlloc(IOPMCompletionQueue); in create()
8991 IOPMCompletionQueue::init( IOService * inOwner, Action inAction ) in init()
9003 IOPMCompletionQueue::queuePMRequest( IOPMRequest * request ) in queuePMRequest()
[all …]
/xnu-8792.41.9/iokit/IOKit/
H A DIOServicePM.h48 class IOPMCompletionQueue; variable
H A DIOService.h2261 …bool actionPMCompletionQueue( LIBKERN_CONSUMED IOPMRequest * request, IOPMCompletionQueue * queue …