Home
last modified time | relevance | path

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

/openthread-latest/src/ncp/
Dncp_hdlc.cpp317 char hexbuf[128]; in HandleError() local
322 snprintf(hexbuf, sizeof(hexbuf), "Framing error %d: [", aError); in HandleError()
325 …oreError(otNcpStreamWrite(0, reinterpret_cast<uint8_t *>(hexbuf), static_cast<int>(strlen(hexbuf))… in HandleError()
329 for (i = 0; (i < aBufLength) && (i < (sizeof(hexbuf) - 3) / 3); i++) in HandleError()
331 snprintf(&hexbuf[i * 3], sizeof(hexbuf) - i * 3, " %02X", static_cast<uint8_t>(aBuf[i])); in HandleError()
336 snprintf(&hexbuf[i * 3], sizeof(hexbuf) - i * 3, "]\n"); in HandleError()
340 …eError(otNcpStreamWrite(0, reinterpret_cast<uint8_t *>(hexbuf + 1), static_cast<int>(strlen(hexbuf in HandleError()