Lines Matching refs:ref
42 //LOGV("~ObjectBase %p ref %i,%i", this, mUserRefCount, mSysRefCount);
73 //LOGV("ObjectBase %p incU ref %i, %i", this, mUserRefCount, mSysRefCount);
78 //LOGV("ObjectBase %p incS ref %i, %i", this, mUserRefCount, mSysRefCount);
88 bool ObjectBase::checkDelete(const ObjectBase *ref) {
89 if (!ref) {
95 // the ref counts. At this point we should be the only thread
97 if (ref->mUserRefCount || ref->mSysRefCount) {
102 ref->remove();
105 ref->preDestroy();
107 delete ref;
114 LOGV("ObjectBase %p decU ref %i, %i", this, mUserRefCount, mSysRefCount);
129 //LOGV("ObjectBase %p zeroU ref %i, %i", this, mUserRefCount, mSysRefCount);
138 //LOGV("ObjectBase %p decS ref %i, %i", this, mUserRefCount, mSysRefCount);
233 // deleted ref to self and possibly others, restart from head.