Home
last modified time | relevance | path

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

/system/chre/core/include/chre/core/
Devent.h84 mRefCount++; in incrementRefCount()
85 CHRE_ASSERT(mRefCount != 0); in incrementRefCount()
89 CHRE_ASSERT(mRefCount > 0); in decrementRefCount()
90 mRefCount--; in decrementRefCount()
94 return (mRefCount == 0); in isUnreferenced()
151 uint8_t mRefCount = 0;
/system/chre/util/include/chre/util/system/
Dref_base.h38 mRefCount.fetch_increment(); in incRef()
47 uint32_t refCount = mRefCount.fetch_decrement(); in decRef()
65 mutable AtomicUint32 mRefCount{1};
/system/core/libsysutils/src/
DSocketClient.cpp52 mRefCount = 1; in init()
233 mRefCount++; in incRef()
240 mRefCount--; in decRef()
241 if (mRefCount == 0) { in decRef()
243 } else if (mRefCount < 0) { in decRef()
/system/core/libsysutils/include/sysutils/
DSocketClient.h25 int mRefCount; variable