Lines Matching full:readbuffer
533 Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer.
535 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
539 If ReadBuffer is NULL, then ASSERT().
545 @param ReadBuffer The pointer to the buffer of bytes to read from the SMBUS.
566 OUT VOID *ReadBuffer,
573 ASSERT (ReadBuffer != NULL);
580 // Assuming that ReadBuffer is large enough to save another memory copy.
582 ReadBuffer = CopyMem (ReadBuffer, WriteBuffer, Length);
583 return InternalSmBusExec (EfiSmbusBWBRProcessCall, SmBusAddress, Length, ReadBuffer, Status);