Home
last modified time | relevance | path

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

/xnu-10002.41.9/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.cpp8743 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8762 queue_enter(&fQueue, next, typeof(next), fCommandChain); in queuePMRequestChain()
8788 queue_remove_first(&fQueue, request, typeof(request), fCommandChain); in checkForWork()
8850 assert( queue_next(&request->fCommandChain) == in queuePMRequest()
8851 queue_prev(&request->fCommandChain)); in queuePMRequest()
8873 queue_enter(requestQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8925 queue_remove_first(requestQueue, request, typeof(request), fCommandChain); in checkRequestQueue()
9027 queue_iterate(&entry->RequestHead, request, typeof(request), fCommandChain) in attachQuiesceRequest()
9093 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
9108 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.41.9/iokit/IOKit/
H A DIOCommand.h78 queue_chain_t fCommandChain; /* used to queue commands */ variable