Home
last modified time | relevance | path

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

/xnu-8020.101.4/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.cpp8626 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8645 queue_enter(&fQueue, next, typeof(next), fCommandChain); in queuePMRequestChain()
8671 queue_remove_first(&fQueue, request, typeof(request), fCommandChain); in checkForWork()
8733 assert( queue_next(&request->fCommandChain) == in queuePMRequest()
8734 queue_prev(&request->fCommandChain)); in queuePMRequest()
8756 queue_enter(requestQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8808 queue_remove_first(requestQueue, request, typeof(request), fCommandChain); in checkRequestQueue()
8910 queue_iterate(&entry->RequestHead, request, typeof(request), fCommandChain) in attachQuiesceRequest()
8972 queue_enter(&fQueue, request, typeof(request), fCommandChain); in queuePMRequest()
8987 next = (typeof(next))queue_next(&request->fCommandChain); in checkForWork()
[all …]
H A DIOService.cpp2097 iterqueue(&notifyList->fCommandChain, entry) { in applyToInterestNotifiers()
2283 enqueue(&notifyList->fCommandChain, &notify->chain); in registerInterestForNotifier()
2305 while (queue_entry_t entry = dequeue(&notifyHead->fCommandChain)) { in cleanInterestList()
/xnu-8020.101.4/iokit/IOKit/
H A DIOCommand.h78 queue_chain_t fCommandChain; /* used to queue commands */ variable