Home
last modified time | relevance | path

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

/system/core/libutils/
DRefBase.cpp172 ref_entry* refs = mStrongRefs; in ~weakref_impl() local
173 while (refs) { in ~weakref_impl()
174 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
175 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
177 refs->stack.log(LOG_TAG); in ~weakref_impl()
179 refs = refs->next; in ~weakref_impl()
186 ref_entry* refs = mWeakRefs; in ~weakref_impl() local
187 while (refs) { in ~weakref_impl()
188 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
189 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
[all …]
/system/core/include/utils/
DRefBase.h243 void set_object_and_refs(T* other, weakref_type* refs);
440 void wp<T>::set_object_and_refs(T* other, weakref_type* refs) in set_object_and_refs() argument
442 if (other) refs->incWeak(this); in set_object_and_refs()
445 m_refs = refs; in set_object_and_refs()