Home | History | Annotate | Download | only in DebugCommunicationLibSerialPort

Lines Matching refs:NumberOfBytes

81   Reads NumberOfBytes data bytes from a debug device into the buffer

83 If the return value is less than NumberOfBytes, then the rest operation failed.
84 If NumberOfBytes is zero, then return 0.
88 @param NumberOfBytes Number of bytes which will be read.
100 IN UINTN NumberOfBytes,
104 if (NumberOfBytes != 1 || Buffer == NULL || Timeout != 0) {
114 Writes NumberOfBytes data bytes from Buffer to the debug device.
116 If the return value is less than NumberOfBytes, then the write operation failed.
117 If NumberOfBytes is zero, then return 0.
121 @param NumberOfBytes Number of bytes to written to the debug device.
123 @retval 0 NumberOfBytes is 0.
125 If this value is less than NumberOfBytes, then the read operation failed.
133 IN UINTN NumberOfBytes
136 return SerialPortWrite (Buffer, NumberOfBytes);