/openthread-3.5.0/src/core/common/ |
D | callback.hpp | 68 void Clear(void) { mHandler = nullptr; } in Clear() 79 mHandler = aHandler; in Set() 90 bool IsSet(void) const { return (mHandler != nullptr); } in IsSet() 98 HandlerType GetHandler(void) const { return mHandler; } in GetHandler() 120 return (mHandler == aHandler) && (mContext == aContext); in Matches() 125 : mHandler(nullptr) in CallbackBase() 130 HandlerType mHandler; member in ot::CallbackBase 162 using CallbackBase<HandlerType>::mHandler; 188 return mHandler(static_cast<Args &&>(aArgs)..., mContext); in Invoke() 204 if (mHandler != nullptr) in InvokeIfSet() [all …]
|
D | tasklet.hpp | 123 , mHandler(aHandler) in Tasklet() 146 void RunTask(void) { mHandler(*this); } in RunTask() 148 Handler mHandler; member in ot::Tasklet
|
D | timer.hpp | 133 , mHandler(aHandler) in Timer() 139 void Fired(void) { mHandler(*this); } in Fired() 141 Handler mHandler; member in ot::Timer
|
D | trickle_timer.cpp | 51 , mHandler(aHandler) in TrickleTimer() 320 mHandler(*this); in HandleTimer()
|
D | trickle_timer.hpp | 219 Handler mHandler; // Handler callback. member in ot::TrickleTimer
|
/openthread-3.5.0/include/openthread/ |
D | udp.h | 72 otUdpHandler mHandler; ///< A function pointer to the receiver callback. member 127 otUdpReceive mHandler; ///< A function pointer to the application callback. member
|
D | coap.h | 418 otCoapRequestHandler mHandler; ///< The callback for handling a received request member 430 otCoapRequestHandler mHandler; ///< The callback for handling a received request member
|
/openthread-3.5.0/src/core/net/ |
D | udp6.hpp | 143 mHandler(mContext, &aMessage, &aMessageInfo); in HandleUdpReceive() 346 mHandler = aHandler; in Receiver() 353 return mHandler(mContext, &aMessage, &aMessageInfo); in HandleMessage()
|
D | udp6.cpp | 180 aSocket.mHandler = aHandler; in Open()
|
/openthread-3.5.0/src/core/coap/ |
D | coap.hpp | 180 mHandler(mContext, &aMessage, &aMessageInfo); in HandleRequest() 212 mHandler = aHandler; in ResourceBlockWise() 274 mHandler(mContext, &aMessage, &aMessageInfo); in HandleRequest()
|
/openthread-3.5.0/src/cli/ |
D | cli_joiner.cpp | 258 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_output.hpp | 158 Handler mHandler; ///< The handler method pointer. member
|
D | cli_mac_filter.cpp | 288 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_bbr.cpp | 488 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_udp.cpp | 299 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_coap_secure.cpp | 103 mResource.mHandler = &CoapSecure::HandleRequest; in Process() 471 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_br.cpp | 609 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_srp_server.cpp | 400 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_coap.cpp | 163 mResource.mHandler = &Coap::HandleRequest; in Process() 593 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_network_data.cpp | 930 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_commissioner.cpp | 470 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_dns.cpp | 744 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
D | cli_srp_client.cpp | 624 error = (this->*command->mHandler)(aArgs + 1); in Process()
|
/openthread-3.5.0/src/ncp/ |
D | ncp_base.hpp | 182 NcpBase::PropertyHandler mHandler; member
|
D | ncp_base_dispatcher.cpp | 774 return aHandlerEntries[l].mKey == aKey ? aHandlerEntries[l].mHandler : nullptr; in FindPropertyHandler()
|