Searched refs:pCurrent (Results 1 – 2 of 2) sorted by relevance
82 InternalMessagePtr pCurrent = pTop; in AddMessageToQueue() local84 while (pCurrent != nullptr) { in AddMessageToQueue()85 pPrev = pCurrent; in AddMessageToQueue()86 pCurrent = pCurrent->GetNextMsg(); in AddMessageToQueue()87 if (pCurrent == nullptr || handleTime < pCurrent->GetHandleTime()) { in AddMessageToQueue()113 InternalMessagePtr pCurrent = pTop; in DeleteMessageFromQueue() local114 while (pCurrent != nullptr) { in DeleteMessageFromQueue()115 InternalMessagePtr pPrev = pCurrent; in DeleteMessageFromQueue()116 pCurrent = pCurrent->GetNextMsg(); in DeleteMessageFromQueue()117 if ((pCurrent != nullptr) && (pCurrent->GetMessageName() == messageName)) { in DeleteMessageFromQueue()[all …]
304 void *pCurrent = data_.data() + position_; in Insert() local305 void *pAfterMove = reinterpret_cast<uint8_t*>(pCurrent) + insertSize; in Insert()307 if (EOK != memmove_s(pAfterMove, sizeToMove, pCurrent, sizeToMove)) { in Insert()