readBytes
Copy data from the memory descriptor's buffer to the specified buffer.
Declaration
virtual IOByteCount readBytes(
IOByteCountoffset,
void *bytes,
IOByteCountwithLength);Parameters
- offset:
A byte offset into the memory descriptor's memory.
- bytes:
The caller supplied buffer to copy the data to.
- withLength:
The length of the data to copy.
Return Value
The number of bytes copied, zero will be returned if the specified offset is beyond the length of the descriptor. Development/debug kernel builds will assert if the offset is beyond the length of the descriptor.
Overview
This method copies data from the memory descriptor's memory at the given offset, to the caller's buffer. The memory descriptor MUST have the kIODirectionOut direcction bit set and be prepared. kIODirectionOut means that this memory descriptor will be output to an external device, so readBytes is used to get memory into a local buffer for a PIO transfer to the device.