Lines Matching refs:bufSize
142 constexpr int bufSize = 1024; in SetSerial() local
143 char buf[bufSize] = { 0 }; in SetSerial()
144 strerror_r(errno, buf, bufSize); in SetSerial()
180 constexpr int bufSize = 1024; in SetSerial() local
181 char buf[bufSize] = { 0 }; in SetSerial()
182 strerror_r(errno, buf, bufSize); in SetSerial()
378 constexpr int bufSize = 1024; in WriteUartDev()
379 char buf[bufSize] = { 0 }; in WriteUartDev()
380 strerror_r(errno, buf, bufSize); in WriteUartDev()
409 constexpr int bufSize = 1024; in UartToHdcProtocol() local
410 char buf[bufSize] = { 0 }; in UartToHdcProtocol()
412 strerror_s(buf, bufSize, errno); in UartToHdcProtocol()
414 strerror_r(errno, buf, bufSize); in UartToHdcProtocol()
422 constexpr int bufSize = 1024; in UartToHdcProtocol() local
423 char buf[bufSize] = { 0 }; in UartToHdcProtocol()
425 strerror_s(buf, bufSize, errno); in UartToHdcProtocol()
427 strerror_r(errno, buf, bufSize); in UartToHdcProtocol()
952 constexpr int bufSize = 1024; in ReadDataFromUARTStream() local
953 char buffer[bufSize] = { 0 }; in ReadDataFromUARTStream()
955 uv_err_name_r(nread, buffer, bufSize); in ReadDataFromUARTStream()