Home
last modified time | relevance | path

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

/xnu-11215.61.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.cpp8946 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8965 queue_enter(&fQueue, next, typeof(next), fCommandChain); in queuePMRequestChain()
8991 queue_remove_first(&fQueue, request, typeof(request), fCommandChain); in checkForWork()
9053 assert( queue_next(&request->fCommandChain) == in queuePMRequest()
9054 queue_prev(&request->fCommandChain)); in queuePMRequest()
9076 queue_enter(requestQueue, request, typeof(request), fCommandChain); in queuePMRequest()
9128 queue_remove_first(requestQueue, request, typeof(request), fCommandChain); in checkRequestQueue()
9230 queue_iterate(&entry->RequestHead, request, typeof(request), fCommandChain) in attachQuiesceRequest()
9296 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
9311 next = (typeof(next))queue_next(&request->fCommandChain); in checkForWork()
[all …]
H A DIOService.cpp2157 iterqueue(&notifyList->fCommandChain, entry) { in applyToInterestNotifiers()
2344 enqueue(&notifyList->fCommandChain, &notify->chain); in registerInterestForNotifier()
2366 while (queue_entry_t entry = dequeue(&notifyHead->fCommandChain)) { in cleanInterestList()
/xnu-11215.61.5/iokit/IOKit/
H A DIOCommand.h78 queue_chain_t fCommandChain; /* used to queue commands */ variable