Home | History | Annotate | Download | only in PeiSmbusLib

Lines Matching defs:Byte

90   Executes an SMBUS receive byte command.

92 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
94 The byte received from the SMBUS is returned.
105 @return The byte received from the SMBUS.
115 UINT8 Byte;
121 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
123 return Byte;
127 Executes an SMBUS send byte command.
129 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
130 The byte specified by Value is sent.
154 UINT8 Byte;
160 Byte = Value;
161 InternalSmBusExec (EfiSmbusSendByte, SmBusAddress, 1, &Byte, Status);
167 Executes an SMBUS read data byte command.
169 Executes an SMBUS read data byte command on the SMBUS device specified by SmBusAddress.
181 @return The byte read from the SMBUS.
191 UINT8 Byte;
196 InternalSmBusExec (EfiSmbusReadByte, SmBusAddress, 1, &Byte, Status);
198 return Byte;
202 Executes an SMBUS write data byte command.
204 Executes an SMBUS write data byte command on the SMBUS device specified by SmBusAddress.
229 UINT8 Byte;
234 Byte = Value;
235 InternalSmBusExec (EfiSmbusWriteByte, SmBusAddress, 1, &Byte, Status);
255 @return The byte read from the SMBUS.