/openthread-latest/src/core/api/ |
D | coap_secure_api.cpp | 123 otHandleCoapSecureClientConnect aHandler, in otCoapSecureConnect() argument 126 AsCoreType(aInstance).GetApplicationCoapSecure().SetConnectCallback(aHandler, aContext); in otCoapSecureConnect() 150 otCoapResponseHandler aHandler, in otCoapSecureSendRequestBlockWise() argument 155 …Type(aInstance).GetApplicationCoapSecure().SendMessage(AsCoapMessage(aMessage), aHandler, aContext, in otCoapSecureSendRequestBlockWise() 162 otCoapResponseHandler aHandler, in otCoapSecureSendRequest() argument 165 …ype(aInstance).GetApplicationCoapSecure().SendMessage(AsCoapMessage(aMessage), aHandler, aContext); in otCoapSecureSendRequest() 191 otHandleCoapSecureClientConnect aHandler, in otCoapSecureSetClientConnectEventCallback() argument 194 AsCoreType(aInstance).GetApplicationCoapSecure().SetConnectCallback(aHandler, aContext); in otCoapSecureSetClientConnectEventCallback() 197 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon… in otCoapSecureSetDefaultHandler() argument 199 AsCoreType(aInstance).GetApplicationCoapSecure().SetDefaultHandler(aHandler, aContext); in otCoapSecureSetDefaultHandler()
|
D | sntp_api.cpp | 46 otSntpResponseHandler aHandler, in otSntpClientQuery() argument 49 return AsCoreType(aInstance).Get<Sntp::Client>().Query(aQuery, aHandler, aContext); in otSntpClientQuery()
|
D | icmp6_api.cpp | 50 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler) in otIcmp6RegisterHandler() argument 52 return AsCoreType(aInstance).Get<Ip6::Icmp>().RegisterHandler(AsCoreType(aHandler)); in otIcmp6RegisterHandler()
|
D | coap_api.cpp | 206 otCoapResponseHandler aHandler, in otCoapSendRequestBlockWiseWithParameters() argument 223 … txParameters, aHandler, aContext, aTransmitHook, in otCoapSendRequestBlockWiseWithParameters() 234 otCoapResponseHandler aHandler, in otCoapSendRequestWithParameters() argument 250 … txParameters, aHandler, aContext); in otCoapSendRequestWithParameters() 285 void otCoapSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aContext) in otCoapSetDefaultHandler() argument 287 AsCoreType(aInstance).GetApplicationCoap().SetDefaultHandler(aHandler, aContext); in otCoapSetDefaultHandler()
|
D | ble_secure_api.cpp | 63 otError otBleSecureTcatStart(otInstance *aInstance, otHandleTcatJoin aHandler) in otBleSecureTcatStart() argument 65 return AsCoreType(aInstance).Get<Ble::BleSecure>().TcatStart(aHandler); in otBleSecureTcatStart()
|
/openthread-latest/src/core/common/ |
D | timer.hpp | 197 Timer(Instance &aInstance, Handler aHandler) in Timer() argument 199 , mHandler(aHandler) in Timer() 254 TimerMilli(Instance &aInstance, Handler aHandler) in TimerMilli() argument 255 : Timer(aInstance, aHandler) in TimerMilli() 365 TimerMilliContext(Instance &aInstance, Handler aHandler, void *aContext) in TimerMilliContext() argument 366 : TimerMilli(aInstance, aHandler) in TimerMilliContext() 426 TimerMicro(Instance &aInstance, Handler aHandler) in TimerMicro() argument 427 : Timer(aInstance, aHandler) in TimerMicro()
|
D | tasklet.hpp | 112 Tasklet(Instance &aInstance, Handler aHandler) in Tasklet() argument 114 , mHandler(aHandler) in Tasklet() 191 TaskletContext(Instance &aInstance, Handler aHandler, void *aContext) in TaskletContext() argument 192 : Tasklet(aInstance, aHandler) in TaskletContext()
|
D | callback.hpp | 73 void Set(HandlerType aHandler, void *aContext) in Set() argument 75 mHandler = aHandler; in Set() 110 bool Matches(HandlerType aHandler, void *aContext) const in Matches() argument 112 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 | 89 TrickleTimer(Instance &aInstance, Handler aHandler);
|
/openthread-latest/include/openthread/ |
D | coap_secure.h | 229 otHandleCoapSecureClientConnect aHandler, 292 otCoapResponseHandler aHandler, 315 otCoapResponseHandler aHandler, 357 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon… 368 otHandleCoapSecureClientConnect aHandler,
|
D | coap.h | 855 otCoapResponseHandler aHandler, 885 otCoapResponseHandler aHandler, 915 otCoapResponseHandler aHandler, in otCoapSendRequestBlockWise() argument 921 …return otCoapSendRequestBlockWiseWithParameters(aInstance, aMessage, aMessageInfo, aHandler, aCont… in otCoapSendRequestBlockWise() 943 otCoapResponseHandler aHandler, in otCoapSendRequest() argument 947 …return otCoapSendRequestWithParameters(aInstance, aMessage, aMessageInfo, aHandler, aContext, NULL… in otCoapSendRequest() 1009 void otCoapSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aContext);
|
D | sntp.h | 94 otSntpResponseHandler aHandler,
|
D | icmp6.h | 173 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler);
|
/openthread-latest/src/core/coap/ |
D | coap.hpp | 148 Resource(const char *aUriPath, RequestHandler aHandler, void *aContext); 157 Resource(Uri aUri, RequestHandler aHandler, void *aContext); 194 otCoapRequestHandler aHandler, in ResourceBlockWise() argument 200 mHandler = aHandler; in ResourceBlockWise() 408 …void SetDefaultHandler(RequestHandler aHandler, void *aContext) { mDefaultHandler.Set(aHandler, aC… in SetDefaultHandler() argument 538 otCoapResponseHandler aHandler = nullptr, 563 ResponseHandler aHandler, 595 ResponseHandler aHandler, 712 Error AbortTransaction(ResponseHandler aHandler, void *aContext); 790 void SetResourceHandler(ResourceHandler aHandler) { mResourceHandler = aHandler; } in SetResourceHandler() argument
|
D | coap_secure.hpp | 74 …void SetConnectCallback(ConnectHandler aHandler, void *aContext) { mConnectCallback.Set(aHandler, … in SetConnectCallback() argument 95 ResponseHandler aHandler = nullptr, 116 …Error SendMessage(Message &aMessage, ResponseHandler aHandler = nullptr, void *aContext = nullptr);
|
D | coap_secure.cpp | 64 ResponseHandler aHandler, in SendMessage() argument 69 …nnected() ? CoapBase::SendMessage(aMessage, GetMessageInfo(), TxParameters::GetDefault(), aHandler, in SendMessage() 76 Error SecureSession::SendMessage(Message &aMessage, ResponseHandler aHandler, void *aContext) in SendMessage() argument 78 …return IsConnected() ? CoapBase::SendMessage(aMessage, GetMessageInfo(), aHandler, aContext) : kEr… in SendMessage()
|
D | coap.cpp | 191 ResponseHandler aHandler, in SendMessage() argument 199 ResponseHandler aHandler, in SendMessage() 267 else if (aMessage.IsNonConfirmable() && (aHandler != nullptr)) in SendMessage() 315 metadata.mResponseHandler = aHandler; in SendMessage() 359 ResponseHandler aHandler, in SendMessage() argument 363 …return SendMessage(aMessage, aMessageInfo, TxParameters::GetDefault(), aHandler, aContext, nullptr… in SendMessage() 365 return SendMessage(aMessage, aMessageInfo, TxParameters::GetDefault(), aHandler, aContext); in SendMessage() 525 Error CoapBase::AbortTransaction(ResponseHandler aHandler, void *aContext) in AbortTransaction() argument 534 if (metadata.mResponseHandler == aHandler && metadata.mResponseContext == aContext) in AbortTransaction() 1652 Resource::Resource(const char *aUriPath, RequestHandler aHandler, void *aContext) in Resource() argument [all …]
|
/openthread-latest/src/core/utils/ |
D | jam_detector.cpp | 60 Error JamDetector::Start(Handler aHandler, void *aContext) in Start() argument 65 VerifyOrExit(aHandler != nullptr, error = kErrorInvalidArgs); in Start() 67 mCallback.Set(aHandler, aContext); in Start()
|
D | jam_detector.hpp | 84 Error Start(Handler aHandler, void *aContext);
|
/openthread-latest/src/core/net/ |
D | udp6.hpp | 188 Socket(Instance &aInstance, ReceiveHandler aHandler, void *aContext); 377 Receiver(otUdpHandler aHandler, void *aContext) in Receiver() argument 380 mHandler = aHandler; in Receiver() 505 …Error Open(SocketHandle &aSocket, NetifIdentifier aNetifId, ReceiveHandler aHandler, void *aContex…
|
D | udp6.cpp | 75 Udp::Socket::Socket(Instance &aInstance, ReceiveHandler aHandler, void *aContext) in Socket() argument 79 mHandler = aHandler; in Socket() 220 Error Udp::Open(SocketHandle &aSocket, NetifIdentifier aNetifId, ReceiveHandler aHandler, void *aCo… in Open() argument 228 aSocket.mHandler = aHandler; in Open()
|
D | icmp6.cpp | 52 Error Icmp::RegisterHandler(Handler &aHandler) { return mHandlers.Add(aHandler); } in RegisterHandler() argument
|
/openthread-latest/src/core/thread/ |
D | announce_sender.cpp | 45 AnnounceSenderBase::AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler) in AnnounceSenderBase() argument 52 , mTimer(aInstance, aHandler) in AnnounceSenderBase()
|
D | announce_sender.hpp | 68 AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler);
|