Home
last modified time | relevance | path

Searched refs:aHandler (Results 1 – 25 of 31) sorted by relevance

12

/openthread-3.5.0/src/core/api/
Dcoap_secure_api.cpp107 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()
Dsntp_api.cpp47 otSntpResponseHandler aHandler, in otSntpClientQuery() argument
50 return AsCoreType(aInstance).Get<Sntp::Client>().Query(aQuery, aHandler, aContext); in otSntpClientQuery()
Dicmp6_api.cpp53 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler) in otIcmp6RegisterHandler() argument
55 return AsCoreType(aInstance).Get<Ip6::Icmp>().RegisterHandler(AsCoreType(aHandler)); in otIcmp6RegisterHandler()
Dcoap_api.cpp205 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/
Dtimer.hpp131 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()
Dtasklet.hpp121 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()
Dcallback.hpp77 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()
Dtrickle_timer.cpp43 TrickleTimer::TrickleTimer(Instance &aInstance, Handler aHandler) in TrickleTimer() argument
51 , mHandler(aHandler) in TrickleTimer()
Dtrickle_timer.hpp95 TrickleTimer(Instance &aInstance, Handler aHandler);
/openthread-3.5.0/include/openthread/
Dcoap_secure.h200 otHandleCoapSecureClientConnect aHandler,
257 otCoapResponseHandler aHandler,
281 otCoapResponseHandler aHandler,
328 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon…
340 otHandleCoapSecureClientConnect aHandler,
Dcoap.h889 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);
Dsntp.h98 otSntpResponseHandler aHandler,
Dicmp6.h182 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler);
/openthread-3.5.0/src/core/coap/
Dcoap_secure.cpp109 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()
Dcoap.hpp157 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
Dcoap_secure.hpp304 ResponseHandler aHandler = nullptr,
330 ResponseHandler aHandler = nullptr,
351 …Error SendMessage(Message &aMessage, ResponseHandler aHandler = nullptr, void *aContext = nullptr);
372 ResponseHandler aHandler = nullptr,
Dcoap.cpp200 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/
Dudp6.hpp203 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);
Dicmp6.cpp59 Error Icmp::RegisterHandler(Handler &aHandler) { return mHandlers.Add(aHandler); } in RegisterHandler() argument
Dudp6.cpp89 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()
Dsntp_client.cpp84 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/
Djam_detector.cpp65 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()
Djam_detector.hpp87 Error Start(Handler aHandler, void *aContext);
/openthread-3.5.0/src/core/thread/
Dannounce_sender.cpp54 AnnounceSenderBase::AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler) in AnnounceSenderBase() argument
61 , mTimer(aInstance, aHandler) in AnnounceSenderBase()
Dannounce_sender.hpp70 AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler);

12