Home
last modified time | relevance | path

Searched defs:aBuf (Results 1 – 25 of 25) sorted by relevance

/openthread-3.6.0/examples/apps/ncp/
Dncp.c40 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) { otNcpHdlcReceive(aBuf, aBufLeng… in otPlatUartReceived()
47 static int NcpSend(const uint8_t *aBuf, uint16_t aBufLength) in NcpSend()
/openthread-3.6.0/src/core/radio/
Dble_secure.cpp185 Error BleSecure::Send(uint8_t *aBuf, uint16_t aLength) in Send()
201 Error BleSecure::SendApplicationTlv(uint8_t *aBuf, uint16_t aLength) in SendApplicationTlv()
242 Error BleSecure::HandleBleReceive(uint8_t *aBuf, uint16_t aLength) in HandleBleReceive()
339 void BleSecure::HandleTlsReceive(void *aContext, uint8_t *aBuf, uint16_t aLength) in HandleTlsReceive()
344 void BleSecure::HandleTlsReceive(uint8_t *aBuf, uint16_t aLength) in HandleTlsReceive()
/openthread-3.6.0/examples/apps/cli/
Dcli_uart.cpp135 static void ReceiveTask(const uint8_t *aBuf, uint16_t aBufLength) in ReceiveTask()
246 static int Output(const char *aBuf, uint16_t aBufLength) in Output()
371 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) { ReceiveTask(aBuf, aBufLength); } in otPlatUartReceived()
/openthread-3.6.0/src/core/api/
Dmessage_api.cpp93 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength) in otMessageAppend()
100 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) in otMessageRead()
107 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) in otMessageWrite()
Dtcp_ext_api.cpp90 int otTcpMbedTlsSslSendCallback(void *aCtx, const unsigned char *aBuf, size_t aLen) in otTcpMbedTlsSslSendCallback()
108 int otTcpMbedTlsSslRecvCallback(void *aCtx, unsigned char *aBuf, size_t aLen) in otTcpMbedTlsSslRecvCallback()
Dcrypto_api.cpp50 void otCryptoHmacSha256(const otCryptoKey *aKey, const uint8_t *aBuf, uint16_t aBufLength, otCrypto… in otCryptoHmacSha256()
Dble_secure_api.cpp172 otError otBleSecureSend(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength) in otBleSecureSend()
177 otError otBleSecureSendApplicationTlv(otInstance *aInstance, uint8_t *aBuf, uint16_t aLength) in otBleSecureSendApplicationTlv()
/openthread-3.6.0/tests/fuzz/
Dncp_hdlc_received.cpp46 static int HdlcSend(const uint8_t *aBuf, uint16_t aBufLength) in HdlcSend()
/openthread-3.6.0/src/ncp/
Dncp_hdlc.cpp273 extern "C" void otNcpHdlcReceive(const uint8_t *aBuf, uint16_t aBufLength) in otNcpHdlcReceive()
283 void NcpHdlc::HandleHdlcReceiveDone(const uint8_t *aBuf, uint16_t aBufLength) in HandleHdlcReceiveDone()
315 void NcpHdlc::HandleError(otError aError, uint8_t *aBuf, uint16_t aBufLength) in HandleError()
Dexample_vendor_hook.cpp132 static int SendHdlc(const uint8_t *aBuf, uint16_t aBufLength) in SendHdlc()
Dncp_base.cpp392 void NcpBase::HandleReceive(const uint8_t *aBuf, uint16_t aBufLength) in HandleReceive()
/openthread-3.6.0/third_party/tcplp/lib/test/
Dtest_all.c15 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) { in otMessageRead()
19 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) { in otMessageWrite()
/openthread-3.6.0/examples/platforms/simulation/
Dspi-stubs.c76 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartReceived()
Duart.c160 otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartSend()
Dradio.c849 void platformRadioReceive(otInstance *aInstance, uint8_t *aBuf, uint16_t aBufLength) in platformRadioReceive()
/openthread-3.6.0/src/core/crypto/
Dhmac_sha256.cpp54 void HmacSha256::Update(const void *aBuf, uint16_t aBufLength) in Update()
Dsha256.cpp54 void Sha256::Update(const void *aBuf, uint16_t aBufLength) in Update()
Dcrypto_platform.cpp202 OT_TOOL_WEAK otError otPlatCryptoHmacSha256Update(otCryptoContext *aContext, const void *aBuf, uint… in otPlatCryptoHmacSha256Update()
218 OT_TOOL_WEAK otError otPlatCryptoHmacSha256Finish(otCryptoContext *aContext, uint8_t *aBuf, size_t … in otPlatCryptoHmacSha256Finish()
403 OT_TOOL_WEAK otError otPlatCryptoSha256Update(otCryptoContext *aContext, const void *aBuf, uint16_t… in otPlatCryptoSha256Update()
/openthread-3.6.0/src/core/common/
Dmessage.cpp403 Error Message::AppendBytes(const void *aBuf, uint16_t aLength) in AppendBytes()
437 Error Message::PrependBytes(const void *aBuf, uint16_t aLength) in PrependBytes()
633 uint16_t Message::ReadBytes(uint16_t aOffset, void *aBuf, uint16_t aLength) const in ReadBytes()
650 Error Message::Read(uint16_t aOffset, void *aBuf, uint16_t aLength) const in Read()
655 bool Message::CompareBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength, ByteMatcher aMatch… in CompareBytes() argument
698 void Message::WriteBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength) in WriteBytes()
/openthread-3.6.0/src/core/coap/
Dcoap_secure.cpp175 void CoapSecure::HandleDtlsReceive(void *aContext, uint8_t *aBuf, uint16_t aLength) in HandleDtlsReceive()
180 void CoapSecure::HandleDtlsReceive(uint8_t *aBuf, uint16_t aLength) in HandleDtlsReceive()
/openthread-3.6.0/examples/platforms/utils/
Duart_rtt.c88 otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartSend()
/openthread-3.6.0/src/core/meshcop/
Dsecure_transport.cpp770 int SecureTransport::HandleMbedtlsTransmit(void *aContext, const unsigned char *aBuf, size_t aLengt… in HandleMbedtlsTransmit()
775 int SecureTransport::HandleMbedtlsTransmit(const unsigned char *aBuf, size_t aLength) in HandleMbedtlsTransmit()
815 int SecureTransport::HandleMbedtlsReceive(void *aContext, unsigned char *aBuf, size_t aLength) in HandleMbedtlsReceive()
820 int SecureTransport::HandleMbedtlsReceive(unsigned char *aBuf, size_t aLength) in HandleMbedtlsReceive()
1144 Error SecureTransport::HandleSecureTransportSend(const uint8_t *aBuf, in HandleSecureTransportSend()
/openthread-3.6.0/tests/unit/
Dtest_nat64.cpp49 void DumpMessageInHex(const char *prefix, const uint8_t *aBuf, size_t aBufLen) in DumpMessageInHex()
/openthread-3.6.0/src/cli/
Dcli.cpp324 void Interpreter::ProcessLine(char *aBuf) in ProcessLine()
8572 extern "C" void otCliInputLine(char *aBuf) { Interpreter::GetInterpreter().ProcessLine(aBuf); } in otCliInputLine()
/openthread-3.6.0/src/core/thread/
Dmle.cpp2297 Error Mle::SendLinkProbe(const Ip6::Address &aDestination, uint8_t aSeriesId, uint8_t *aBuf, uint8_… in SendLinkProbe()