Home
last modified time | relevance | path

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

/system/chre/core/include/chre/core/
Devent.h82 mRefCount++; in incrementRefCount()
83 CHRE_ASSERT(mRefCount != 0); in incrementRefCount()
87 CHRE_ASSERT(mRefCount > 0); in decrementRefCount()
88 mRefCount--; in decrementRefCount()
92 return (mRefCount == 0); in isUnreferenced()
147 uint16_t mRefCount = 0;
/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