Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/wifi/wifi/base/state_machine/src/
H A Dmessage_queue.cpp82 InternalMessagePtr pCurrent = pTop; in AddMessageToQueue() local
84 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() local
114 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 …]
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/
H A Dheif_stream.cpp304 void *pCurrent = data_.data() + position_; in Insert() local
305 void *pAfterMove = reinterpret_cast<uint8_t*>(pCurrent) + insertSize; in Insert()
307 if (EOK != memmove_s(pAfterMove, sizeToMove, pCurrent, sizeToMove)) { in Insert()