Home
last modified time | relevance | path

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

/system/libfmq/include/fmq/
DMessageQueueBase.h448 std::atomic<uint64_t>* mReadPtr = nullptr; member
599 mReadPtr = reinterpret_cast<std::atomic<uint64_t>*>( in initMemory()
606 mReadPtr = new (std::nothrow) std::atomic<uint64_t>; in initMemory()
608 if (mReadPtr == nullptr) { in initMemory()
623 mReadPtr->store(0, std::memory_order_release); in initMemory()
627 mReadPtr->store(0, std::memory_order_release); in initMemory()
778 if (flavor == kUnsynchronizedWrite && mReadPtr != nullptr) { in ~MessageQueueBase()
779 delete mReadPtr; in ~MessageQueueBase() local
780 } else if (mReadPtr != nullptr) { in ~MessageQueueBase()
781 unmapGrantorDescr(mReadPtr, hardware::details::READPTRPOS); in ~MessageQueueBase()
[all …]