/openthread-3.5.0/src/core/api/ |
D | coap_secure_api.cpp | 107 otHandleCoapSecureClientConnect aHandler, in otCoapSecureConnect() argument 110 …return AsCoreType(aInstance).GetApplicationCoapSecure().Connect(AsCoreType(aSockAddr), aHandler, a… in otCoapSecureConnect() 130 otCoapResponseHandler aHandler, in otCoapSecureSendRequestBlockWise() argument 135 …Type(aInstance).GetApplicationCoapSecure().SendMessage(AsCoapMessage(aMessage), aHandler, aContext, in otCoapSecureSendRequestBlockWise() 142 otCoapResponseHandler aHandler, in otCoapSecureSendRequest() argument 145 …ype(aInstance).GetApplicationCoapSecure().SendMessage(AsCoapMessage(aMessage), aHandler, aContext); in otCoapSecureSendRequest() 171 otHandleCoapSecureClientConnect aHandler, in otCoapSecureSetClientConnectedCallback() argument 174 AsCoreType(aInstance).GetApplicationCoapSecure().SetClientConnectedCallback(aHandler, aContext); in otCoapSecureSetClientConnectedCallback() 177 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon… in otCoapSecureSetDefaultHandler() argument 179 AsCoreType(aInstance).GetApplicationCoapSecure().SetDefaultHandler(aHandler, aContext); in otCoapSecureSetDefaultHandler()
|
D | sntp_api.cpp | 47 otSntpResponseHandler aHandler, in otSntpClientQuery() argument 50 return AsCoreType(aInstance).Get<Sntp::Client>().Query(aQuery, aHandler, aContext); in otSntpClientQuery()
|
D | icmp6_api.cpp | 53 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler) in otIcmp6RegisterHandler() argument 55 return AsCoreType(aInstance).Get<Ip6::Icmp>().RegisterHandler(AsCoreType(aHandler)); in otIcmp6RegisterHandler()
|
D | coap_api.cpp | 205 otCoapResponseHandler aHandler, in otCoapSendRequestBlockWiseWithParameters() argument 220 … txParameters, aHandler, aContext, aTransmitHook, in otCoapSendRequestBlockWiseWithParameters() 231 otCoapResponseHandler aHandler, in otCoapSendRequestWithParameters() argument 245 … txParameters, aHandler, aContext); in otCoapSendRequestWithParameters() 280 void otCoapSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aContext) in otCoapSetDefaultHandler() argument 282 AsCoreType(aInstance).GetApplicationCoap().SetDefaultHandler(aHandler, aContext); in otCoapSetDefaultHandler()
|
/openthread-3.5.0/src/core/common/ |
D | timer.hpp | 131 Timer(Instance &aInstance, Handler aHandler) in Timer() argument 133 , mHandler(aHandler) in Timer() 192 TimerMilli(Instance &aInstance, Handler aHandler) in TimerMilli() argument 193 : Timer(aInstance, aHandler) in TimerMilli() 296 TimerMilliContext(Instance &aInstance, Handler aHandler, void *aContext) in TimerMilliContext() argument 297 : TimerMilli(aInstance, aHandler) in TimerMilliContext() 362 TimerMicro(Instance &aInstance, Handler aHandler) in TimerMicro() argument 363 : Timer(aInstance, aHandler) in TimerMicro()
|
D | tasklet.hpp | 121 Tasklet(Instance &aInstance, Handler aHandler) in Tasklet() argument 123 , mHandler(aHandler) in Tasklet() 199 TaskletContext(Instance &aInstance, Handler aHandler, void *aContext) in TaskletContext() argument 200 : Tasklet(aInstance, aHandler) in TaskletContext()
|
D | callback.hpp | 77 void Set(HandlerType aHandler, void *aContext) in Set() argument 79 mHandler = aHandler; in Set() 118 bool Matches(HandlerType aHandler, void *aContext) const in Matches() argument 120 return (mHandler == aHandler) && (mContext == aContext); in Matches()
|
D | trickle_timer.cpp | 43 TrickleTimer::TrickleTimer(Instance &aInstance, Handler aHandler) in TrickleTimer() argument 51 , mHandler(aHandler) in TrickleTimer()
|
D | trickle_timer.hpp | 95 TrickleTimer(Instance &aInstance, Handler aHandler);
|
/openthread-3.5.0/include/openthread/ |
D | coap_secure.h | 200 otHandleCoapSecureClientConnect aHandler, 257 otCoapResponseHandler aHandler, 281 otCoapResponseHandler aHandler, 328 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon… 340 otHandleCoapSecureClientConnect aHandler,
|
D | coap.h | 889 otCoapResponseHandler aHandler, 919 otCoapResponseHandler aHandler, 950 otCoapResponseHandler aHandler, in otCoapSendRequestBlockWise() argument 956 …return otCoapSendRequestBlockWiseWithParameters(aInstance, aMessage, aMessageInfo, aHandler, aCont… in otCoapSendRequestBlockWise() 979 otCoapResponseHandler aHandler, in otCoapSendRequest() argument 983 …return otCoapSendRequestWithParameters(aInstance, aMessage, aMessageInfo, aHandler, aContext, NULL… in otCoapSendRequest() 1052 void otCoapSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aContext);
|
D | sntp.h | 98 otSntpResponseHandler aHandler,
|
D | icmp6.h | 182 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler);
|
/openthread-3.5.0/src/core/coap/ |
D | coap_secure.cpp | 109 ResponseHandler aHandler, in SendMessage() argument 118 …Base::SendMessage(aMessage, mDtls.GetMessageInfo(), TxParameters::GetDefault(), aHandler, aContext, in SendMessage() 127 ResponseHandler aHandler, in SendMessage() argument 132 …return CoapBase::SendMessage(aMessage, aMessageInfo, TxParameters::GetDefault(), aHandler, aContex… in SendMessage() 136 Error CoapSecure::SendMessage(Message &aMessage, ResponseHandler aHandler, void *aContext) in SendMessage() argument 142 error = CoapBase::SendMessage(aMessage, mDtls.GetMessageInfo(), aHandler, aContext); in SendMessage() 150 ResponseHandler aHandler, in SendMessage() argument 153 return CoapBase::SendMessage(aMessage, aMessageInfo, aHandler, aContext); in SendMessage()
|
D | coap.hpp | 157 Resource(const char *aUriPath, RequestHandler aHandler, void *aContext); 167 Resource(Uri aUri, RequestHandler aHandler, void *aContext); 206 otCoapRequestHandler aHandler, in ResourceBlockWise() argument 212 mHandler = aHandler; in ResourceBlockWise() 442 …void SetDefaultHandler(RequestHandler aHandler, void *aContext) { mDefaultHandler.Set(aHandler, aC… in SetDefaultHandler() argument 582 otCoapResponseHandler aHandler = nullptr, 608 ResponseHandler aHandler, 642 ResponseHandler aHandler, 768 Error AbortTransaction(ResponseHandler aHandler, void *aContext); 854 void SetResourceHandler(ResourceHandler aHandler) { mResourceHandler = aHandler; } in SetResourceHandler() argument
|
D | coap_secure.hpp | 304 ResponseHandler aHandler = nullptr, 330 ResponseHandler aHandler = nullptr, 351 …Error SendMessage(Message &aMessage, ResponseHandler aHandler = nullptr, void *aContext = nullptr); 372 ResponseHandler aHandler = nullptr,
|
D | coap.cpp | 200 ResponseHandler aHandler, in SendMessage() argument 208 ResponseHandler aHandler, in SendMessage() 276 else if (aMessage.IsNonConfirmable() && (aHandler != nullptr)) in SendMessage() 324 metadata.mResponseHandler = aHandler; in SendMessage() 368 ResponseHandler aHandler, in SendMessage() argument 372 …return SendMessage(aMessage, aMessageInfo, TxParameters::GetDefault(), aHandler, aContext, nullptr… in SendMessage() 374 return SendMessage(aMessage, aMessageInfo, TxParameters::GetDefault(), aHandler, aContext); in SendMessage() 538 Error CoapBase::AbortTransaction(ResponseHandler aHandler, void *aContext) in AbortTransaction() argument 547 if (metadata.mResponseHandler == aHandler && metadata.mResponseContext == aContext) in AbortTransaction() 1687 Resource::Resource(const char *aUriPath, RequestHandler aHandler, void *aContext) in Resource() argument [all …]
|
/openthread-3.5.0/src/core/net/ |
D | udp6.hpp | 203 Error Open(otUdpReceive aHandler, void *aContext); 343 Receiver(otUdpHandler aHandler, void *aContext) in Receiver() argument 346 mHandler = aHandler; in Receiver() 483 Error Open(SocketHandle &aSocket, otUdpReceive aHandler, void *aContext);
|
D | icmp6.cpp | 59 Error Icmp::RegisterHandler(Handler &aHandler) { return mHandlers.Add(aHandler); } in RegisterHandler() argument
|
D | udp6.cpp | 89 Error Udp::Socket::Open(otUdpReceive aHandler, void *aContext) { return Get<Udp>().Open(*this, aHan… in Open() argument 172 Error Udp::Open(SocketHandle &aSocket, otUdpReceive aHandler, void *aContext) in Open() argument 180 aSocket.mHandler = aHandler; in Open()
|
D | sntp_client.cpp | 84 Error Client::Query(const otSntpQuery *aQuery, otSntpResponseHandler aHandler, void *aContext) in Query() argument 104 queryMetadata.mResponseHandler.Set(aHandler, aContext); in Query()
|
/openthread-3.5.0/src/core/utils/ |
D | jam_detector.cpp | 65 Error JamDetector::Start(Handler aHandler, void *aContext) in Start() argument 70 VerifyOrExit(aHandler != nullptr, error = kErrorInvalidArgs); in Start() 72 mCallback.Set(aHandler, aContext); in Start()
|
D | jam_detector.hpp | 87 Error Start(Handler aHandler, void *aContext);
|
/openthread-3.5.0/src/core/thread/ |
D | announce_sender.cpp | 54 AnnounceSenderBase::AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler) in AnnounceSenderBase() argument 61 , mTimer(aInstance, aHandler) in AnnounceSenderBase()
|
D | announce_sender.hpp | 70 AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler);
|