Lines Matching refs:ref
89 ALOGV("ObjectBase %p incU ref %i, %i", this, mUserRefCount, mSysRefCount);
96 ALOGV("ObjectBase %p incS ref %i, %i", this, mUserRefCount, mSysRefCount);
107 bool ObjectBase::checkDelete(const ObjectBase *ref) {
108 if (!ref) {
114 // the ref counts. At this point we should be the only thread
116 if (ref->mUserRefCount || ref->mSysRefCount) {
121 ref->remove();
124 ref->preDestroy();
126 delete ref;
133 ALOGV("ObjectBase %p decU ref %i, %i", this, mUserRefCount, mSysRefCount);
151 ALOGV("ObjectBase %p zeroU ref %i, %i", this, mUserRefCount, mSysRefCount);
163 ALOGV("ObjectBase %p decS ref %i, %i", this, mUserRefCount, mSysRefCount);
263 // deleted ref to self and possibly others, restart from head.