Home
last modified time | relevance | path

Searched refs:kTxBufferSize (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/openthread/examples/apps/cli/
H A Dcli_uart.cpp88 kTxBufferSize = OPENTHREAD_CONFIG_CLI_UART_TX_BUFFER_SIZE, enumerator
94 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 …]
/aosp_15_r20/external/ot-br-posix/src/ncp/
H A Dncp_spinel.hpp289 static constexpr uint16_t kTxBufferSize = 2048; member in otbr::Ncp::NcpSpinel
290 uint8_t mTxBuffer[kTxBufferSize];
H A Dncp_spinel.cpp56 , mNcpBuffer(mTxBuffer, kTxBufferSize) in NcpSpinel()
524 uint8_t frame[kTxBufferSize]; in SendEncodedFrame()
/aosp_15_r20/external/openthread/src/ncp/
H A Dncp_base.hpp638kTxBufferSize = OPENTHREAD_CONFIG_NCP_TX_BUFFER_SIZE, // Tx Buffer size (used by mTxFrameBuf… enumerator
672 uint8_t mTxBuffer[kTxBufferSize];