/openthread-3.6.0/examples/apps/cli/ |
D | cli_uart.cpp | 132 static int Output(const char *aBuf, uint16_t aBufLength); 135 static void ReceiveTask(const uint8_t *aBuf, uint16_t aBufLength) in ReceiveTask() argument 142 end = aBuf + aBufLength; in ReceiveTask() 144 for (; aBuf < end; aBuf++) in ReceiveTask() 146 switch (*aBuf) in ReceiveTask() 185 Output(reinterpret_cast<const char *>(aBuf), 1); in ReceiveTask() 186 sRxBuffer[sRxLength++] = static_cast<char>(*aBuf); in ReceiveTask() 192 sLastChar = *aBuf; in ReceiveTask() 246 static int Output(const char *aBuf, uint16_t aBufLength) in Output() argument 265 sTxBuffer[tail] = *aBuf++; in Output() [all …]
|
/openthread-3.6.0/src/core/api/ |
D | message_api.cpp | 93 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength) in otMessageAppend() argument 95 AssertPointerIsNotNull(aBuf); in otMessageAppend() 97 return AsCoreType(aMessage).AppendBytes(aBuf, aLength); in otMessageAppend() 100 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) in otMessageRead() argument 102 AssertPointerIsNotNull(aBuf); in otMessageRead() 104 return AsCoreType(aMessage).ReadBytes(aOffset, aBuf, aLength); in otMessageRead() 107 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) in otMessageWrite() argument 109 AssertPointerIsNotNull(aBuf); in otMessageWrite() 111 AsCoreType(aMessage).WriteBytes(aOffset, aBuf, aLength); in otMessageWrite()
|
D | crypto_api.cpp | 50 void otCryptoHmacSha256(const otCryptoKey *aKey, const uint8_t *aBuf, uint16_t aBufLength, otCrypto… in otCryptoHmacSha256() argument 54 AssertPointerIsNotNull(aBuf); in otCryptoHmacSha256() 57 hmac.Update(aBuf, aBufLength); in otCryptoHmacSha256()
|
D | tcp_ext_api.cpp | 90 int otTcpMbedTlsSslSendCallback(void *aCtx, const unsigned char *aBuf, size_t aLen) in otTcpMbedTlsSslSendCallback() argument 99 error = otTcpCircularSendBufferWrite(endpoint, sendBuffer, aBuf, aLen, &bytes_written, 0); in otTcpMbedTlsSslSendCallback() 108 int otTcpMbedTlsSslRecvCallback(void *aCtx, unsigned char *aBuf, size_t aLen) in otTcpMbedTlsSslRecvCallback() argument 122 memcpy(&aBuf[bytes_read], buffer->mData, to_copy); in otTcpMbedTlsSslRecvCallback()
|
D | ble_secure_api.cpp | 172 otError otBleSecureSend(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength) in otBleSecureSend() argument 174 return AsCoreType(aInstance).Get<Ble::BleSecure>().Send(aBuf, aLength); in otBleSecureSend() 177 otError otBleSecureSendApplicationTlv(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength) in otBleSecureSendApplicationTlv() argument 179 return AsCoreType(aInstance).Get<Ble::BleSecure>().SendApplicationTlv(aBuf, aLength); in otBleSecureSendApplicationTlv()
|
/openthread-3.6.0/examples/apps/ncp/ |
D | ncp.c | 40 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) { otNcpHdlcReceive(aBuf, aBufLeng… in otPlatUartReceived() argument 47 static int NcpSend(const uint8_t *aBuf, uint16_t aBufLength) in NcpSend() argument 49 IgnoreError(otPlatUartSend(aBuf, aBufLength)); in NcpSend()
|
/openthread-3.6.0/src/core/radio/ |
D | ble_secure.cpp | 185 Error BleSecure::Send(uint8_t *aBuf, uint16_t aLength) in Send() argument 195 SuccessOrExit(error = mSendMessage->AppendBytes(aBuf, aLength)); in Send() 201 Error BleSecure::SendApplicationTlv(uint8_t *aBuf, uint16_t aLength) in SendApplicationTlv() argument 221 error = Send(aBuf, aLength); in SendApplicationTlv() 242 Error BleSecure::HandleBleReceive(uint8_t *aBuf, uint16_t aLength) in HandleBleReceive() argument 253 SuccessOrExit(error = message->AppendBytes(aBuf, aLength)); in HandleBleReceive() 339 void BleSecure::HandleTlsReceive(void *aContext, uint8_t *aBuf, uint16_t aLength) in HandleTlsReceive() argument 341 return static_cast<BleSecure *>(aContext)->HandleTlsReceive(aBuf, aLength); in HandleTlsReceive() 344 void BleSecure::HandleTlsReceive(uint8_t *aBuf, uint16_t aLength) in HandleTlsReceive() argument 350 SuccessOrExit(mReceivedMessage->AppendBytes(aBuf, aLength)); in HandleTlsReceive() [all …]
|
D | ble_secure.hpp | 386 Error Send(uint8_t *aBuf, uint16_t aLength); 399 Error SendApplicationTlv(uint8_t *aBuf, uint16_t aLength); 418 Error HandleBleReceive(uint8_t *aBuf, uint16_t aLength); 460 static void HandleTlsReceive(void *aContext, uint8_t *aBuf, uint16_t aLength); 461 void HandleTlsReceive(uint8_t *aBuf, uint16_t aLength);
|
/openthread-3.6.0/src/core/meshcop/ |
D | secure_transport.hpp | 119 typedef void (*ReceiveHandler)(void *aContext, uint8_t *aBuf, uint16_t aLength); 507 static int HandleMbedtlsReceive(void *aContext, unsigned char *aBuf, size_t aLength); 508 int HandleMbedtlsReceive(unsigned char *aBuf, size_t aLength); 510 static int HandleMbedtlsTransmit(void *aContext, const unsigned char *aBuf, size_t aLength); 511 int HandleMbedtlsTransmit(const unsigned char *aBuf, size_t aLength); 553 void HandleReceive(const uint8_t *aBuf, uint16_t aLength); 554 …Error HandleSecureTransportSend(const uint8_t *aBuf, uint16_t aLength, Message::SubType aMessageSu…
|
/openthread-3.6.0/examples/platforms/utils/ |
D | uart.h | 84 otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength); 112 extern void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength);
|
D | uart_rtt.c | 88 otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartSend() argument 92 …otEXPECT_ACTION(SEGGER_RTT_Write(UART_RTT_BUFFER_INDEX, aBuf, aBufLength) != 0, error = OT_ERROR_F… in otPlatUartSend()
|
/openthread-3.6.0/examples/platforms/simulation/ |
D | spi-stubs.c | 76 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartReceived() argument 78 OT_UNUSED_VARIABLE(aBuf); in otPlatUartReceived()
|
/openthread-3.6.0/include/openthread/ |
D | ncp.h | 66 typedef int (*otNcpHdlcSendCallback)(const uint8_t *aBuf, uint16_t aBufLength); 81 void otNcpHdlcReceive(const uint8_t *aBuf, uint16_t aBufLength);
|
D | message.h | 293 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength); 314 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength); 335 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength);
|
D | tcp_ext.h | 236 int otTcpMbedTlsSslSendCallback(void *aCtx, const unsigned char *aBuf, size_t aLen); 247 int otTcpMbedTlsSslRecvCallback(void *aCtx, unsigned char *aBuf, size_t aLen);
|
D | ble_secure.h | 397 otError otBleSecureSend(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength); 411 otError otBleSecureSendApplicationTlv(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength);
|
/openthread-3.6.0/src/ncp/ |
D | ncp_hdlc.cpp | 273 extern "C" void otNcpHdlcReceive(const uint8_t *aBuf, uint16_t aBufLength) in otNcpHdlcReceive() argument 279 ncpHdlc->HandleHdlcReceiveDone(aBuf, aBufLength); in otNcpHdlcReceive() 283 void NcpHdlc::HandleHdlcReceiveDone(const uint8_t *aBuf, uint16_t aBufLength) in HandleHdlcReceiveDone() argument 285 mFrameDecoder.Decode(aBuf, aBufLength); in HandleHdlcReceiveDone() 315 void NcpHdlc::HandleError(otError aError, uint8_t *aBuf, uint16_t aBufLength) in HandleError() argument 331 snprintf(&hexbuf[i * 3], sizeof(hexbuf) - i * 3, " %02X", static_cast<uint8_t>(aBuf[i])); in HandleError()
|
D | ncp_hdlc.hpp | 85 void HandleHdlcReceiveDone(const uint8_t *aBuf, uint16_t aBufLength); 133 void HandleError(otError aError, uint8_t *aBuf, uint16_t aBufLength);
|
D | example_vendor_hook.cpp | 132 static int SendHdlc(const uint8_t *aBuf, uint16_t aBufLength) in SendHdlc() argument 134 OT_UNUSED_VARIABLE(aBuf); in SendHdlc()
|
/openthread-3.6.0/src/core/crypto/ |
D | sha256.cpp | 54 void Sha256::Update(const void *aBuf, uint16_t aBufLength) in Update() argument 56 SuccessOrAssert(otPlatCryptoSha256Update(&mContext, aBuf, aBufLength)); in Update()
|
D | hmac_sha256.cpp | 54 void HmacSha256::Update(const void *aBuf, uint16_t aBufLength) in Update() argument 56 SuccessOrAssert(otPlatCryptoHmacSha256Update(&mContext, aBuf, aBufLength)); in Update()
|
/openthread-3.6.0/src/core/common/ |
D | message.cpp | 403 Error Message::AppendBytes(const void *aBuf, uint16_t aLength) in AppendBytes() argument 409 WriteBytes(oldLength, aBuf, aLength); in AppendBytes() 437 Error Message::PrependBytes(const void *aBuf, uint16_t aLength) in PrependBytes() argument 463 if (aBuf != nullptr) in PrependBytes() 465 WriteBytes(0, aBuf, aLength); in PrependBytes() 633 uint16_t Message::ReadBytes(uint16_t aOffset, void *aBuf, uint16_t aLength) const in ReadBytes() argument 635 uint8_t *bufPtr = reinterpret_cast<uint8_t *>(aBuf); in ReadBytes() 647 return static_cast<uint16_t>(bufPtr - reinterpret_cast<uint8_t *>(aBuf)); in ReadBytes() 650 Error Message::Read(uint16_t aOffset, void *aBuf, uint16_t aLength) const in Read() argument 652 return (ReadBytes(aOffset, aBuf, aLength) == aLength) ? kErrorNone : kErrorParse; in Read() [all …]
|
/openthread-3.6.0/tests/fuzz/ |
D | ncp_hdlc_received.cpp | 46 static int HdlcSend(const uint8_t *aBuf, uint16_t aBufLength) in HdlcSend() argument 48 OT_UNUSED_VARIABLE(aBuf); in HdlcSend()
|
/openthread-3.6.0/src/core/coap/ |
D | coap_secure.cpp | 175 void CoapSecure::HandleDtlsReceive(void *aContext, uint8_t *aBuf, uint16_t aLength) in HandleDtlsReceive() argument 177 return static_cast<CoapSecure *>(aContext)->HandleDtlsReceive(aBuf, aLength); in HandleDtlsReceive() 180 void CoapSecure::HandleDtlsReceive(uint8_t *aBuf, uint16_t aLength) in HandleDtlsReceive() argument 185 SuccessOrExit(message->AppendBytes(aBuf, aLength)); in HandleDtlsReceive()
|
/openthread-3.6.0/include/openthread/platform/ |
D | crypto.h | 364 otError otPlatCryptoHmacSha256Update(otCryptoContext *aContext, const void *aBuf, uint16_t aBufLeng… 378 otError otPlatCryptoHmacSha256Finish(otCryptoContext *aContext, uint8_t *aBuf, size_t aBufLength); 550 otError otPlatCryptoSha256Update(otCryptoContext *aContext, const void *aBuf, uint16_t aBufLength);
|