Home
last modified time | relevance | path

Searched refs:fCommandChain (Results 1 – 6 of 6) sorted by relevance

/xnu-10002.81.5/iokit/Kernel/
H A DIOCommandPool.cpp189 *command, IOCommand *, fCommandChain); in gatedGetCommand()
217 queue_enter_first(&fQueueHead, command, IOCommand *, fCommandChain); in gatedReturnCommand()
H A DIOCommand.cpp53 queue_init(&fCommandChain); in init()
H A DIODMAEventSource.cpp210 queue_remove_first(&dmaCommandsCompleted, dmaCommand, IODMACommand *, fCommandChain); in checkForWork()
229 queue_enter(&dmaCommandsCompleted, dmaCommand, IODMACommand *, fCommandChain); in completeDMACommand()
H A DIOServicePM.cpp8813 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8832 queue_enter(&fQueue, next, typeof(next), fCommandChain); in queuePMRequestChain()
8858 queue_remove_first(&fQueue, request, typeof(request), fCommandChain); in checkForWork()
8920 assert( queue_next(&request->fCommandChain) == in queuePMRequest()
8921 queue_prev(&request->fCommandChain)); in queuePMRequest()
8943 queue_enter(requestQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8995 queue_remove_first(requestQueue, request, typeof(request), fCommandChain); in checkRequestQueue()
9097 queue_iterate(&entry->RequestHead, request, typeof(request), fCommandChain) in attachQuiesceRequest()
9163 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
9178 next = (typeof(next))queue_next(&request->fCommandChain); in checkForWork()
[all …]
H A DIOService.cpp2139 iterqueue(&notifyList->fCommandChain, entry) { in applyToInterestNotifiers()
2326 enqueue(&notifyList->fCommandChain, &notify->chain); in registerInterestForNotifier()
2348 while (queue_entry_t entry = dequeue(&notifyHead->fCommandChain)) { in cleanInterestList()
/xnu-10002.81.5/iokit/IOKit/
H A DIOCommand.h78 queue_chain_t fCommandChain; /* used to queue commands */ variable