/openthread-3.4.0/include/openthread/ |
D | message.h | 59 typedef struct otMessage otMessage; typedef 96 void otMessageFree(otMessage *aMessage); 115 uint16_t otMessageGetLength(const otMessage *aMessage); 135 otError otMessageSetLength(otMessage *aMessage, uint16_t aLength); 153 uint16_t otMessageGetOffset(const otMessage *aMessage); 170 void otMessageSetOffset(otMessage *aMessage, uint16_t aOffset); 181 bool otMessageIsLinkSecurityEnabled(const otMessage *aMessage); 192 void otMessageSetDirectTransmission(otMessage *aMessage, bool aEnabled); 200 int8_t otMessageGetRss(const otMessage *aMessage); 221 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength); [all …]
|
D | coap.h | 169 const otMessage *mMessage; ///< CoAP message 345 otMessage *aMessage, 357 typedef void (*otCoapRequestHandler)(void *aContext, otMessage *aMessage, const otMessageInfo *aMes… 493 void otCoapMessageInit(otMessage *aMessage, otCoapType aType, otCoapCode aCode); 509 otError otCoapMessageInitResponse(otMessage *aResponse, const otMessage *aRequest, otCoapType aType… 522 otError otCoapMessageSetToken(otMessage *aMessage, const uint8_t *aToken, uint8_t aTokenLength); 531 void otCoapMessageGenerateToken(otMessage *aMessage, uint8_t aTokenLength); 552 otError otCoapMessageAppendContentFormatOption(otMessage *aMessage, otCoapOptionContentFormat aCont… 567 otError otCoapMessageAppendOption(otMessage *aMessage, uint16_t aNumber, uint16_t aLength, const vo… 583 otError otCoapMessageAppendUintOption(otMessage *aMessage, uint16_t aNumber, uint32_t aValue); [all …]
|
D | udp.h | 63 typedef bool (*otUdpHandler)(void *aContext, const otMessage *aMessage, const otMessageInfo *aMessa… 111 otError otUdpSendDatagram(otInstance *aInstance, otMessage *aMessage, otMessageInfo *aMessageInfo); 117 typedef void (*otUdpReceive)(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo… 158 otMessage *otUdpNewMessage(otInstance *aInstance, const otMessageSettings *aSettings); 241 otError otUdpSend(otInstance *aInstance, otUdpSocket *aSocket, otMessage *aMessage, const otMessage… 281 typedef void (*otUdpForwarder)(otMessage *aMessage, 310 otMessage *aMessage,
|
D | coap_secure.h | 256 otMessage *aMessage, 280 otMessage *aMessage, 360 otMessage *aMessage, 376 otError otCoapSecureSendResponse(otInstance *aInstance, otMessage *aMessage, const otMessageInfo *a…
|
D | nat64.h | 315 otMessage *otIp4NewMessage(otInstance *aInstance, const otMessageSettings *aSettings); 358 otError otNat64Send(otInstance *aInstance, otMessage *aMessage); 369 typedef void (*otNat64ReceiveIp4Callback)(otMessage *aMessage, void *aContext);
|
D | icmp6.h | 121 otMessage *aMessage, 194 otMessage *aMessage,
|
D | ip6.h | 398 otMessage *otIp6NewMessage(otInstance *aInstance, const otMessageSettings *aSettings); 417 otMessage *otIp6NewMessageFromBuffer(otInstance *aInstance, 431 typedef void (*otIp6ReceiveCallback)(otMessage *aMessage, void *aContext); 530 otError otIp6Send(otInstance *aInstance, otMessage *aMessage);
|
/openthread-3.4.0/src/core/api/ |
D | message_api.cpp | 43 void otMessageFree(otMessage *aMessage) { AsCoreType(aMessage).Free(); } in otMessageFree() 45 uint16_t otMessageGetLength(const otMessage *aMessage) { return AsCoreType(aMessage).GetLength(); } in otMessageGetLength() 47 otError otMessageSetLength(otMessage *aMessage, uint16_t aLength) { return AsCoreType(aMessage).Set… in otMessageSetLength() 49 uint16_t otMessageGetOffset(const otMessage *aMessage) { return AsCoreType(aMessage).GetOffset(); } in otMessageGetOffset() 51 void otMessageSetOffset(otMessage *aMessage, uint16_t aOffset) { AsCoreType(aMessage).SetOffset(aOf… in otMessageSetOffset() 53 bool otMessageIsLinkSecurityEnabled(const otMessage *aMessage) { return AsCoreType(aMessage).IsLink… in otMessageIsLinkSecurityEnabled() 55 void otMessageSetDirectTransmission(otMessage *aMessage, bool aEnabled) in otMessageSetDirectTransmission() 67 int8_t otMessageGetRss(const otMessage *aMessage) { return AsCoreType(aMessage).GetAverageRss(); } in otMessageGetRss() 69 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength) in otMessageAppend() 76 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) in otMessageRead() [all …]
|
D | coap_api.cpp | 46 otMessage *otCoapNewMessage(otInstance *aInstance, const otMessageSettings *aSettings) in otCoapNewMessage() 51 void otCoapMessageInit(otMessage *aMessage, otCoapType aType, otCoapCode aCode) in otCoapMessageInit() 56 otError otCoapMessageInitResponse(otMessage *aResponse, const otMessage *aRequest, otCoapType aType… in otCoapMessageInitResponse() 67 otError otCoapMessageSetToken(otMessage *aMessage, const uint8_t *aToken, uint8_t aTokenLength) in otCoapMessageSetToken() 72 void otCoapMessageGenerateToken(otMessage *aMessage, uint8_t aTokenLength) in otCoapMessageGenerateToken() 77 otError otCoapMessageAppendContentFormatOption(otMessage *aMessage, otCoapOptionContentFormat aCont… in otCoapMessageAppendContentFormatOption() 82 otError otCoapMessageAppendOption(otMessage *aMessage, uint16_t aNumber, uint16_t aLength, const vo… in otCoapMessageAppendOption() 87 otError otCoapMessageAppendUintOption(otMessage *aMessage, uint16_t aNumber, uint32_t aValue) in otCoapMessageAppendUintOption() 92 otError otCoapMessageAppendObserveOption(otMessage *aMessage, uint32_t aObserve) in otCoapMessageAppendObserveOption() 97 otError otCoapMessageAppendUriPathOptions(otMessage *aMessage, const char *aUriPath) in otCoapMessageAppendUriPathOptions() [all …]
|
D | udp_api.cpp | 43 otMessage *otUdpNewMessage(otInstance *aInstance, const otMessageSettings *aSettings) in otUdpNewMessage() 73 otError otUdpSend(otInstance *aInstance, otUdpSocket *aSocket, otMessage *aMessage, const otMessage… in otUdpSend() 88 otMessage *aMessage, in otUdpForwardReceive() 117 otError otUdpSendDatagram(otInstance *aInstance, otMessage *aMessage, otMessageInfo *aMessageInfo) in otUdpSendDatagram()
|
D | coap_secure_api.cpp | 129 otMessage *aMessage, in otCoapSecureSendRequestBlockWise() 141 otMessage *aMessage, in otCoapSecureSendRequest() 184 otMessage *aMessage, in otCoapSecureSendResponseBlockWise() 194 otError otCoapSecureSendResponse(otInstance *aInstance, otMessage *aMessage, const otMessageInfo *a… in otCoapSecureSendResponse()
|
/openthread-3.4.0/src/cli/ |
D | cli_coap_secure.hpp | 98 void PrintPayload(otMessage *aMessage); 106 … static void HandleRequest(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo); 107 void HandleRequest(otMessage *aMessage, const otMessageInfo *aMessageInfo); 109 …static void HandleResponse(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo,… 110 …void HandleResponse(otMessage *aMessage, const otMessageInfo *aMessageInfo, otError aError); 134 …static void DefaultHandler(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo); 135 void DefaultHandler(otMessage *aMessage, const otMessageInfo *aMessageInfo);
|
D | cli_coap.hpp | 97 void PrintPayload(otMessage *aMessage); 105 … static void HandleRequest(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo); 106 void HandleRequest(otMessage *aMessage, const otMessageInfo *aMessageInfo); 110 otMessage *aMessage, 113 …void HandleNotificationResponse(otMessage *aMessage, const otMessageInfo *aMessageInfo, otE… 116 …static void HandleResponse(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo,… 117 …void HandleResponse(otMessage *aMessage, const otMessageInfo *aMessageInfo, otError aError);
|
D | cli_udp.hpp | 77 static otError PrepareAutoGeneratedPayload(otMessage &aMessage, uint16_t aPayloadLength); 78 static otError PrepareHexStringPayload(otMessage &aMessage, const char *aHexString); 80 …static void HandleUdpReceive(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInf… 81 void HandleUdpReceive(otMessage *aMessage, const otMessageInfo *aMessageInfo);
|
D | cli_udp.cpp | 126 otMessage *message = nullptr; in Process() 216 otError UdpExample::PrepareAutoGeneratedPayload(otMessage &aMessage, uint16_t aPayloadLength) in PrepareAutoGeneratedPayload() 246 otError UdpExample::PrepareHexStringPayload(otMessage &aMessage, const char *aHexString) in PrepareHexStringPayload() 305 void UdpExample::HandleUdpReceive(void *aContext, otMessage *aMessage, const otMessageInfo *aMessag… in HandleUdpReceive() 310 void UdpExample::HandleUdpReceive(otMessage *aMessage, const otMessageInfo *aMessageInfo) in HandleUdpReceive()
|
D | cli_coap_secure.cpp | 67 void CoapSecure::PrintPayload(otMessage *aMessage) in PrintPayload() 217 otMessage *message = nullptr; in ProcessRequest() 510 void CoapSecure::HandleRequest(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageIn… in HandleRequest() 515 void CoapSecure::HandleRequest(otMessage *aMessage, const otMessageInfo *aMessageInfo) in HandleRequest() 518 otMessage *responseMessage = nullptr; in HandleRequest() 634 void CoapSecure::HandleResponse(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageI… in HandleResponse() 639 void CoapSecure::HandleResponse(otMessage *aMessage, const otMessageInfo *aMessageInfo, otError aEr… in HandleResponse() 657 void CoapSecure::DefaultHandler(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageI… in DefaultHandler() 662 void CoapSecure::DefaultHandler(otMessage *aMessage, const otMessageInfo *aMessageInfo) in DefaultHandler() 665 otMessage *responseMessage = nullptr; in DefaultHandler()
|
D | cli_coap.cpp | 78 otMessage *message = nullptr; in CancelResourceSubscription() 118 void Coap::PrintPayload(otMessage *aMessage) in PrintPayload() 195 otMessage *notificationMessage = nullptr; in Process() 353 otMessage *message = nullptr; in ProcessRequest() 599 void Coap::HandleRequest(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo) in HandleRequest() 604 void Coap::HandleRequest(otMessage *aMessage, const otMessageInfo *aMessageInfo) in HandleRequest() 607 otMessage *responseMessage = nullptr; in HandleRequest() 792 otMessage *aMessage, in HandleNotificationResponse() 799 void Coap::HandleNotificationResponse(otMessage *aMessage, const otMessageInfo *aMessageInfo, otErr… in HandleNotificationResponse() 821 void Coap::HandleResponse(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo, o… in HandleResponse() [all …]
|
/openthread-3.4.0/third_party/tcplp/ |
D | tcplp.h | 69 otMessage * tcplp_sys_new_message(otInstance *instance); 70 void tcplp_sys_free_message(otInstance *instance, otMessage *pkt); 71 void tcplp_sys_send_message(otInstance *instance, otMessage *pkt, otMessageInfo *info);
|
/openthread-3.4.0/include/openthread/platform/ |
D | dns.h | 76 …nsStartUpstreamQuery(otInstance *aInstance, otPlatDnsUpstreamQuery *aTxn, const otMessage *aQuery); 103 …latDnsUpstreamQueryDone(otInstance *aInstance, otPlatDnsUpstreamQuery *aTxn, otMessage *aResponse);
|
D | dso_transport.h | 142 void otPlatDsoSend(otPlatDsoConnection *aConnection, otMessage *aMessage); 160 extern void otPlatDsoHandleReceive(otPlatDsoConnection *aConnection, otMessage *aMessage);
|
/openthread-3.4.0/tests/unit/ |
D | test_message_queue.cpp | 251 otMessage *message; in VerifyMessageQueueContentUsingOtApi() 252 otMessage *msgArg; in VerifyMessageQueueContentUsingOtApi() 268 msgArg = va_arg(args, otMessage *); in VerifyMessageQueueContentUsingOtApi() 283 otMessage *messages[kNumTestMessages]; in TestMessageQueueOtApis() 284 otMessage *message; in TestMessageQueueOtApis() 290 for (otMessage *&msg : messages) in TestMessageQueueOtApis()
|
/openthread-3.4.0/src/core/thread/ |
D | mlr_manager.hpp | 155 otMessage *aMessage, 169 otMessage *aMessage, 172 void HandleRegisterMulticastListenersResponse(otMessage *aMessage,
|
/openthread-3.4.0/src/core/meshcop/ |
D | joiner_router.hpp | 102 …static void HandleUdpReceive(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInf… 108 otMessage *aMessage,
|
D | commissioner.hpp | 555 otMessage *aMessage, 562 otMessage *aMessage, 569 otMessage *aMessage, 574 otMessage *aMessage,
|
/openthread-3.4.0/src/core/net/ |
D | dns_platform.cpp | 47 void otPlatDnsUpstreamQueryDone(otInstance *aInstance, otPlatDnsUpstreamQuery *aTxn, otMessage *aRe… in otPlatDnsUpstreamQueryDone()
|