Lines Matching refs:m_pRefCount
35 m_pRefCount = new int32_t(1);
37 m_pRefCount = NULL;
47 m_pRefCount = rhs.m_pRefCount;
60 m_pRefCount = rhs.m_pRefCount;
110 m_pRefCount = rhs.m_pRefCount;
126 m_pRefCount = rhs.m_pRefCount;
136 int32_t *m_pRefCount;
142 if (!m_pRefCount) return 0; in use()
143 return android_atomic_inc(m_pRefCount) + 1; in use()
149 if (!m_pRefCount) return 0; in release()
151 int iVal = android_atomic_dec(m_pRefCount); in release()
155 delete m_pRefCount; in release() local
156 m_pRefCount = NULL; in release()