Contents

writeBytes

Copy data to the memory descriptor's buffer from the specified buffer.

Declaration

virtual IOByteCount writeBytes(
 IOByteCountoffset, 
 const void *bytes,
 IOByteCountwithLength);

Parameters

  • offset:

    A byte offset into the memory descriptor's memory.

  • bytes:

    The caller supplied buffer to copy the data from.

  • 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 to the memory descriptor's memory at the given offset, from the caller's buffer. The memory descriptor MUST have the kIODirectionIn direcction bit set and be prepared. kIODirectionIn means that this memory descriptor will be input from an external device, so writeBytes is used to write memory into the descriptor for PIO drivers.

See Also

Reading and Writing Buffer Data