Searched refs:dmaCommand (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIODMAEventSource.cpp90 IOReturn IODMAEventSource::startDMACommand(IODMACommand *dmaCommand, IODirection direction, IOByteCount byteCount, IOByteCount byteOffset) argument
100 result = dmaController->startDMACommand(dmaIndex, dmaCommand, direction, byteCount, byteOffset);
120 IOReturn IODMAEventSource::queryDMACommand(IODMACommand **dmaCommand, IOByteCount *transferCount, bool waitForIdle) argument
124 return dmaController->queryDMACommand(dmaIndex, dmaCommand, transferCount, waitForIdle);
156 IODMACommand *dmaCommand = NULL; local
162 queue_remove_first(&dmaCommandsCompleted, dmaCommand, IODMACommand *, fCommandChain);
170 (*dmaCompletionAction)(owner, this, dmaCommand, dmaCommand->reserved->fStatus, dmaCommand->reserved->fActualByteCount, dmaCommand
176 completeDMACommand(IODMACommand *dmaCommand) argument
190 notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp) argument
[all...]
H A DIODMAController.cpp96 void IODMAController::completeDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand) argument
98 dmaES->completeDMACommand(dmaCommand);
101 void IODMAController::notifyDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp) argument
103 dmaES->notifyDMACommand(dmaCommand, status, actualByteCount, timeStamp);
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIODMAEventSource.h46 typedef void (*Action)(OSObject *owner, IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp);
50 virtual void completeDMACommand(IODMACommand *dmaCommand);
51 virtual void notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp);
60 virtual IOReturn startDMACommand(IODMACommand *dmaCommand, IODirection direction, IOByteCount byteCount = 0, IOByteCount byteOffset = 0);
63 virtual IOReturn queryDMACommand(IODMACommand **dmaCommand, IOByteCount *transferCount, bool waitForIdle = false);
H A DIODMAController.h51 virtual IOReturn startDMACommand(UInt32 dmaIndex, IODMACommand *dmaCommand, IODirection direction,
54 virtual void completeDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand);
55 virtual void notifyDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp);
56 virtual IOReturn queryDMACommand(UInt32 dmaIndex, IODMACommand **dmaCommand, IOByteCount *transferCount, bool waitForIdle = false) = 0;

Completed in 65 milliseconds