Home | History | Annotate | Download | only in DxeSmbusLib

Lines Matching full:readbuffer

540   Bytes are written to the SMBUS from WriteBuffer.  Bytes are then read from the SMBUS into ReadBuffer.

542 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
546 If ReadBuffer is NULL, then ASSERT().
552 @param ReadBuffer The pointer to the buffer of bytes to read from the SMBUS.
574 OUT VOID *ReadBuffer,
581 ASSERT (ReadBuffer != NULL);
588 // Assuming that ReadBuffer is large enough to save another memory copy.
590 ReadBuffer = CopyMem (ReadBuffer, WriteBuffer, Length);
591 return InternalSmBusExec (EfiSmbusBWBRProcessCall, SmBusAddress, Length, ReadBuffer, Status);