Home
last modified time | relevance | path

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

/system/core/libutils/
DRefBase.cpp182 ref_entry* refs = mStrongRefs; in ~weakref_impl() local
183 while (refs) { in ~weakref_impl()
184 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
185 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
187 refs->stack.log(LOG_TAG); in ~weakref_impl()
189 refs = refs->next; in ~weakref_impl()
196 ref_entry* refs = mWeakRefs; in ~weakref_impl() local
197 while (refs) { in ~weakref_impl()
198 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
199 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
[all …]
/system/libhwbinder/
DIPCThreadState.cpp470 RefBase::weakref_type* refs = mPendingWeakDerefs[i]; in processPendingDerefs() local
471 refs->decWeak(mProcess.get()); in processPendingDerefs()
950 RefBase::weakref_type* refs; in executeCommand() local
961 refs = (RefBase::weakref_type*)mIn.readPointer(); in executeCommand()
963 ALOG_ASSERT(refs->refBase() == obj, in executeCommand()
965 refs, obj, refs->refBase()); in executeCommand()
972 mOut.writePointer((uintptr_t)refs); in executeCommand()
977 refs = (RefBase::weakref_type*)mIn.readPointer(); in executeCommand()
979 ALOG_ASSERT(refs->refBase() == obj, in executeCommand()
981 refs, obj, refs->refBase()); in executeCommand()
[all …]
DProcessState.cpp172 e.refs = NULL; in lookupHandleLocked()
192 if (b == NULL || !e->refs->attemptIncWeak(this)) { in getStrongProxyForHandle()
195 if (b) e->refs = b->getWeakRefs(); in getStrongProxyForHandle()
202 e->refs->decWeak(this); in getStrongProxyForHandle()
226 if (b == NULL || !e->refs->attemptIncWeak(this)) { in getWeakProxyForHandle()
230 if (b) e->refs = b->getWeakRefs(); in getWeakProxyForHandle()
233 e->refs->decWeak(this); in getWeakProxyForHandle()
/system/libhwbinder/include/hwbinder/
DProcessState.h80 RefBase::weakref_type* refs; member
/system/core/libutils/include/utils/
DRefBase.h378 void set_object_and_refs(T* other, weakref_type* refs);
575 void wp<T>::set_object_and_refs(T* other, weakref_type* refs) in set_object_and_refs() argument
577 if (other) refs->incWeak(this); in set_object_and_refs()
580 m_refs = refs; in set_object_and_refs()
/system/tools/hidl/
Dmain.cpp231 const std::set<FQName>& refs = ast->getImportedNames(); in generateMakefileSectionForType() local
232 for (auto depFQName : refs) { in generateMakefileSectionForType()