Home
last modified time | relevance | path

Searched refs:sTxPacketQueueTail (Results 1 – 1 of 1) sorted by relevance

/openthread-latest/src/posix/platform/
Dtrel.cpp70 static TxPacket *sTxPacketQueueTail; // A circular linked list for queued tx packets. variable
302 sTxPacketQueueTail = NULL; in InitPacketQueue()
318 while (sTxPacketQueueTail != NULL) in SendQueuedPackets()
320 TxPacket *packet = sTxPacketQueueTail->mNext; // tail->mNext is the head of the list. in SendQueuedPackets()
331 if (packet == sTxPacketQueueTail) in SendQueuedPackets()
333 sTxPacketQueueTail = NULL; in SendQueuedPackets()
337 sTxPacketQueueTail->mNext = packet->mNext; in SendQueuedPackets()
364 if (sTxPacketQueueTail == NULL) in EnqueuePacket()
367 sTxPacketQueueTail = packet; in EnqueuePacket()
371 packet->mNext = sTxPacketQueueTail->mNext; in EnqueuePacket()
[all …]