Home | History | Annotate | Download | only in PeiSmbusLibSmbus2Ppi

Lines Matching defs:Byte

101   Executes an SMBUS receive byte command.

103 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
105 The byte received from the SMBUS is returned.
126 @return The byte received from the SMBUS.
136 UINT8 Byte;
142 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
144 return Byte;
148 Executes an SMBUS send byte command.
150 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
151 The byte specified by Value is sent.
185 UINT8 Byte;
191 Byte = Value;
192 InternalSmBusExec (EfiSmbusSendByte, SmBusAddress, 1, &Byte, Status);
198 Executes an SMBUS read data byte command.
200 Executes an SMBUS read data byte command on the SMBUS device specified by SmBusAddress.
222 @return The byte read from the SMBUS.
232 UINT8 Byte;
237 InternalSmBusExec (EfiSmbusReadByte, SmBusAddress, 1, &Byte, Status);
239 return Byte;
243 Executes an SMBUS write data byte command.
245 Executes an SMBUS write data byte command on the SMBUS device specified by SmBusAddress.
280 UINT8 Byte;
285 Byte = Value;
286 InternalSmBusExec (EfiSmbusWriteByte, SmBusAddress, 1, &Byte, Status);
316 @return The byte read from the SMBUS.