Home
last modified time | relevance | path

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

/frameworks/rs/
DrsObjectBase.cpp27 mUserRefCount = 0; in ObjectBase()
49 ALOGV("ObjectBase destroyed %p refs %i %i", this, mUserRefCount, mSysRefCount); in ~ObjectBase()
72 rsAssert(!mUserRefCount); in ~ObjectBase()
79 op, this, mName, mUserRefCount, mSysRefCount, mNext, mPrev, mRSC); in dumpLOGV()
82 op, this, mUserRefCount, mSysRefCount, mNext, mPrev, mRSC); in dumpLOGV()
87 __sync_fetch_and_add(&mUserRefCount, 1); in incUserRef()
89 ALOGV("ObjectBase %p incU ref %i, %i", this, mUserRefCount, mSysRefCount); in incUserRef()
96 ALOGV("ObjectBase %p incS ref %i, %i", this, mUserRefCount, mSysRefCount); in incSysRef()
116 if (ref->mUserRefCount || ref->mSysRefCount) { in checkDelete()
131 rsAssert(mUserRefCount > 0); in decUserRef()
[all …]
DrsObjectBase.h92 mutable int32_t mUserRefCount; variable