Home
last modified time | relevance | path

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

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