Home
last modified time | relevance | path

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

12

/openthread-latest/src/core/api/
Dcoap_secure_api.cpp123 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()
Dsntp_api.cpp46 otSntpResponseHandler aHandler, in otSntpClientQuery() argument
49 return AsCoreType(aInstance).Get<Sntp::Client>().Query(aQuery, aHandler, aContext); in otSntpClientQuery()
Dicmp6_api.cpp50 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler) in otIcmp6RegisterHandler() argument
52 return AsCoreType(aInstance).Get<Ip6::Icmp>().RegisterHandler(AsCoreType(aHandler)); in otIcmp6RegisterHandler()
Dcoap_api.cpp206 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()
Dble_secure_api.cpp63 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/
Dtimer.hpp197 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()
Dtasklet.hpp112 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()
Dcallback.hpp73 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()
Dtrickle_timer.cpp43 TrickleTimer::TrickleTimer(Instance &aInstance, Handler aHandler) in TrickleTimer() argument
51 , mHandler(aHandler) in TrickleTimer()
Dtrickle_timer.hpp89 TrickleTimer(Instance &aInstance, Handler aHandler);
/openthread-latest/include/openthread/
Dcoap_secure.h229 otHandleCoapSecureClientConnect aHandler,
292 otCoapResponseHandler aHandler,
315 otCoapResponseHandler aHandler,
357 void otCoapSecureSetDefaultHandler(otInstance *aInstance, otCoapRequestHandler aHandler, void *aCon…
368 otHandleCoapSecureClientConnect aHandler,
Dcoap.h855 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);
Dsntp.h94 otSntpResponseHandler aHandler,
Dicmp6.h173 otError otIcmp6RegisterHandler(otInstance *aInstance, otIcmp6Handler *aHandler);
/openthread-latest/src/core/coap/
Dcoap.hpp148 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
Dcoap_secure.hpp74 …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);
Dcoap_secure.cpp64 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()
Dcoap.cpp191 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/
Djam_detector.cpp60 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()
Djam_detector.hpp84 Error Start(Handler aHandler, void *aContext);
/openthread-latest/src/core/net/
Dudp6.hpp188 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…
Dudp6.cpp75 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()
Dicmp6.cpp52 Error Icmp::RegisterHandler(Handler &aHandler) { return mHandlers.Add(aHandler); } in RegisterHandler() argument
/openthread-latest/src/core/thread/
Dannounce_sender.cpp45 AnnounceSenderBase::AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler) in AnnounceSenderBase() argument
52 , mTimer(aInstance, aHandler) in AnnounceSenderBase()
Dannounce_sender.hpp68 AnnounceSenderBase(Instance &aInstance, Timer::Handler aHandler);

12