Lines Matching refs:m_pRefCount
36 m_pRefCount = new int32_t(1);
38 m_pRefCount = NULL;
48 m_pRefCount = rhs.m_pRefCount;
61 m_pRefCount = rhs.m_pRefCount;
111 m_pRefCount = rhs.m_pRefCount;
127 m_pRefCount = rhs.m_pRefCount;
137 int32_t *m_pRefCount;
143 if (!m_pRefCount) return 0; in use()
144 return android_atomic_inc(m_pRefCount) + 1; in use()
150 if (!m_pRefCount) return 0; in release()
152 int iVal = android_atomic_dec(m_pRefCount); in release()
156 delete m_pRefCount; in release() local
157 m_pRefCount = NULL; in release()