Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkSharedMutex.cpp121 , fWaitingExclusive(new ThreadIDSet) in SkSharedMutex()
135 if (!fWaitingExclusive->tryAdd(threadID)) { in acquire()
140 waitingExclusiveCount = fWaitingExclusive->count(); in acquire()
162 if (!fWaitingExclusive->tryRemove(threadID)) { in release()
165 exclusiveWaitingCount = fWaitingExclusive->count(); in release()
185 SkASSERT(fWaitingExclusive->find(threadID)); in assertHeld()
194 exclusiveWaitingCount = fWaitingExclusive->count(); in acquireShared()
226 waitingExclusiveCount = fWaitingExclusive->count(); in releaseShared()
DSkSharedMutex.h54 std::unique_ptr<ThreadIDSet> fWaitingExclusive; variable