Home
last modified time | relevance | path

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

12

/openthread-2.7.6/src/core/common/
Dtasklet.cpp56 mTail->mNext = mTail; in PostTasklet()
61 aTasklet.mNext = mTail->mNext; in PostTasklet()
62 mTail->mNext = &aTasklet; in PostTasklet()
81 Tasklet *tasklet = tail->mNext; in ProcessQueuedTasklets()
89 tail->mNext = tasklet->mNext; in ProcessQueuedTasklets()
92 tasklet->mNext = nullptr; in ProcessQueuedTasklets()
Dtasklet.hpp124 , mNext(nullptr) in Tasklet()
143 bool IsPosted(void) const { return (mNext != nullptr); } in IsPosted()
149 Tasklet *mNext; member in ot::Tasklet
Dtimer.hpp98 , mNext(this) in Timer()
117 bool IsRunning(void) const { return (mNext != this); } in IsRunning()
151 Timer * mNext; member in ot::Timer
Dlinked_list.hpp77 … *GetNext(void) const { return static_cast<const Type *>(static_cast<const Type *>(this)->mNext); } in GetNext()
85 Type *GetNext(void) { return static_cast<Type *>(static_cast<Type *>(this)->mNext); } in GetNext()
93 void SetNext(Type *aNext) { static_cast<Type *>(this)->mNext = aNext; } in SetNext()
Dmessage.hpp152 Message * mNext; ///< A pointer to the next Message in a doubly linked list. member
1303 Message *&Next(void) { return GetMetadata().mNext; } in Next()
1312 Message *const &Next(void) const { return GetMetadata().mNext; } in Next()
/openthread-2.7.6/tests/unit/
Dtest_heap.cpp85 Node * mNext; in TestAllocateRandomly() member
102 last->mNext = static_cast<Node *>(heap.CAlloc(1, size)); in TestAllocateRandomly()
105 if (last->mNext == nullptr) in TestAllocateRandomly()
110 …VerifyOrQuit(last->mNext->mNext == nullptr, "TestAllocateRandomly memory not initialized to zero!"… in TestAllocateRandomly()
111 last = last->mNext; in TestAllocateRandomly()
126 prev = prev->mNext; in TestAllocateRandomly()
129 Node *curr = prev->mNext; in TestAllocateRandomly()
131 prev->mNext = curr->mNext; in TestAllocateRandomly()
143 last = head.mNext; in TestAllocateRandomly()
147 Node *next = last->mNext; in TestAllocateRandomly()
Dtest_toolchain_c.c46 return offsetof(otNetifAddress, mNext); in otNetifAddress_offset_mNext_c()
Dtest_pool.cpp40 EntryBase *mNext; member
Dtest_toolchain.cpp107 VerifyOrQuit(offsetof(otNetifAddress, mNext) == otNetifAddress_offset_mNext_c(), in test_addr_sizes()
/openthread-2.7.6/src/posix/platform/
Dmainloop.cpp41 assert(aSource.mNext == nullptr); in Add()
43 aSource.mNext = mSources; in Add()
49 for (Source **pnext = &mSources; *pnext != nullptr; pnext = &(*pnext)->mNext) in Remove()
53 *pnext = aSource.mNext; in Remove()
58 aSource.mNext = nullptr; in Remove()
63 for (Source *source = mSources; source != nullptr; source = source->mNext) in Update()
71 for (Source *source = mSources; source != nullptr; source = source->mNext) in Process()
Dtrel_udp6.cpp75 struct TxPacket *mNext; member
419 packet->mNext = sFreeTxPacketHead; in InitPacketQueue()
428 TxPacket *packet = sTxPacketQueueTail->mNext; // tail->mNext is the head of the list. in SendQueuedPackets()
445 sTxPacketQueueTail->mNext = packet->mNext; in SendQueuedPackets()
450 packet->mNext = sFreeTxPacketHead; in SendQueuedPackets()
465 sFreeTxPacketHead = sFreeTxPacketHead->mNext; in EnqueuePacket()
475 packet->mNext = packet; in EnqueuePacket()
480 packet->mNext = sTxPacketQueueTail->mNext; in EnqueuePacket()
481 sTxPacketQueueTail->mNext = packet; in EnqueuePacket()
Dmainloop.hpp69 Source *mNext = nullptr; member in ot::Posix::Mainloop::Source
/openthread-2.7.6/src/core/net/
Dnd_agent.hpp76 void FreeAloc(void) { mAloc.mNext = &mAloc; } in FreeAloc()
77 bool IsAlocInUse(void) const { return mAloc.mNext != &mAloc; } in IsAlocInUse()
Dnetif.hpp220 …onst MulticastAddress *GetNext(void) const { return static_cast<const MulticastAddress *>(mNext); } in GetNext()
230 return static_cast<MulticastAddress *>(const_cast<otNetifMulticastAddress *>(mNext)); in GetNext()
319 … return static_cast<ExternalMulticastAddress *>(const_cast<otNetifMulticastAddress *>(mNext)); in GetNext()
Dsrp_server.hpp307 Description *mNext; member
340 Service * mNext; member in ot::Srp::Server::Service
492 Host * mNext; member in ot::Srp::Server::Host
708 UpdateMetadata * mNext; member in ot::Srp::Server::UpdateMetadata
/openthread-2.7.6/src/core/utils/
Dsrp_client_buffers.hpp172 … ServiceEntry * GetNext(void) { return reinterpret_cast<ServiceEntry *>(mService.mNext); } in GetNext()
173 …erviceEntry *GetNext(void) const { return reinterpret_cast<const ServiceEntry *>(mService.mNext); } in GetNext()
174 …void SetNext(ServiceEntry *aEntry) { mService.mNext = reinterpret_cast<Srp::Client::Service *>(aEn… in SetNext()
/openthread-2.7.6/include/openthread/
Dtcp.h65 …struct otLinkedBuffer *mNext; ///< Pointer to the next linked buffer in the chain, or NULL if it… member
208 struct otTcpEndpoint *mNext; ///< A pointer to the next TCP endpoint (internal use only) member
613 struct otTcpListener *mNext; ///< A pointer to the next TCP listener (internal use only) member
Dudp.h71 struct otUdpReceiver *mNext; ///< A pointer to the next UDP receiver (internal use only). member
130 struct otUdpSocket *mNext; ///< A pointer to the next UDP socket (internal use only). member
Dicmp6.h131 struct otIcmp6Handler *mNext; ///< A pointer to the next handler in the list. member
Dip6.h187 …struct otNetifAddress *mNext; ///< A pointer to the next network interface addre… member
197 …const struct otNetifMulticastAddress *mNext; ///< A pointer to the next network interface multi… member
Dsrp_client.h111 …struct otSrpClientService *mNext; ///< Pointer to next entry in a linked-list (managed by OT core… member
/openthread-2.7.6/src/core/coap/
Dcoap.hpp158 mNext = nullptr; in Resource()
208 mNext = nullptr; in ResourceBlockWise()
233 …return static_cast<const ResourceBlockWise *>(static_cast<const ResourceBlockWise *>(this)->mNext); in GetNext()
244 return static_cast<ResourceBlockWise *>(static_cast<ResourceBlockWise *>(this)->mNext); in GetNext()
253 … void SetNext(ResourceBlockWise *aNext) { static_cast<ResourceBlockWise *>(this)->mNext = aNext; } in SetNext()
/openthread-2.7.6/include/openthread/platform/
Dmessagepool.h62 struct otMessageBuffer *mNext; ///< Pointer to the next buffer. member
/openthread-2.7.6/src/cli/
Dcli_tcp.cpp200 mSendLink.mNext = nullptr; in ProcessSend()
240 mBenchmarkLinks[i].mNext = nullptr; in ProcessBenchmark()
435 for (; data != nullptr; data = data->mNext) in HandleTcpReceiveAvailable()
Dcli_srp_client.cpp339 …ice = otSrpClientGetServices(mInterpreter.mInstance); service != nullptr; service = service->mNext) in ProcessService()
514 aServices = aServices->mNext; in OutputServiceList()
609 next = service->mNext; in HandleCallback()

12