Searched refs:kTxBufferSize (Results 1 – 2 of 2) sorted by relevance
88 kTxBufferSize = OPENTHREAD_CONFIG_CLI_UART_TX_BUFFER_SIZE, enumerator94 char sTxBuffer[kTxBufferSize];215 if (sTxLength > kTxBufferSize - sTxHead) in Send()217 sSendLength = kTxBufferSize - sTxHead; in Send()239 sTxHead = (sTxHead + sSendLength) % kTxBufferSize; in SendDoneTask()253 uint16_t remaining = kTxBufferSize - sTxLength; in Output()264 tail = (sTxHead + sTxLength) % kTxBufferSize; in Output()305 rval = vsnprintf(sTxBuffer, kTxBufferSize, aFormat, aArguments); in CliUartOutput()306 …VerifyOrExit(rval >= 0 && rval < kTxBufferSize, otLogWarnPlat("Failed to format CLI output `%s`", … in CliUartOutput()314 uint16_t tail = (sTxHead + sTxLength) % kTxBufferSize; in CliUartOutput()[all …]
541 …kTxBufferSize = OPENTHREAD_CONFIG_NCP_TX_BUFFER_SIZE, // Tx Buffer size (used by mTxFrameBuf… enumerator566 uint8_t mTxBuffer[kTxBufferSize];