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

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIODMAEventSource.cpp84 IOReturn IODMAEventSource::startDMACommand(IODMACommand *dmaCommand, IODirection direction, IOByteCount byteCount, IOByteCount byteOffset) argument
94 result = dmaController->startDMACommand(dmaIndex, dmaCommand, direction, byteCount, byteOffset);
114 IOReturn IODMAEventSource::queryDMACommand(IODMACommand **dmaCommand, IOByteCount *transferCount, bool waitForIdle) argument
118 return dmaController->queryDMACommand(dmaIndex, dmaCommand, transferCount, waitForIdle);
126 IODMACommand *dmaCommand = NULL; local
132 queue_remove_first(&dmaCommandsCompleted, dmaCommand, IODMACommand *, fCommandChain);
140 (*dmaCompletionAction)(owner, this, dmaCommand, dmaCommand->reserved->fStatus, dmaCommand->reserved->fActualByteCount);
146 void IODMAEventSource::completeDMACommand(IODMACommand *dmaCommand) argument
160 notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount) argument
[all...]
H A DIODMAController.cpp89 void IODMAController::completeDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand) argument
91 dmaES->completeDMACommand(dmaCommand);
94 void IODMAController::notifyDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount) argument
96 dmaES->notifyDMACommand(dmaCommand, status, actualByteCount);
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIODMAEventSource.h46 typedef void (*Action)(OSObject *owner, IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount);
50 virtual void completeDMACommand(IODMACommand *dmaCommand);
51 virtual void notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount);
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);
56 virtual IOReturn queryDMACommand(UInt32 dmaIndex, IODMACommand **dmaCommand, IOByteCount *transferCount, bool waitForIdle = false) = 0;

Completed in 30 milliseconds