Home
last modified time | relevance | path

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

/aosp12/system/core/libutils/include/utils/
H A DRefBase.h326 weakref_type* createWeak(const void* id) const;
557 m_refs = other ? m_refs = other->createWeak(this) : nullptr; in wp()
563 m_refs = other ? other->createWeak(this) : nullptr; in wp()
568 weakref_type* newRefs = other ? other->createWeak(this) : nullptr;
578 weakref_type* newRefs = other ? other->createWeak(this) : 0;
597 m_refs = m_ptr ? m_ptr->createWeak(this) : nullptr; in wp()
616 m_refs = m_ptr ? m_ptr->createWeak(this) : nullptr; in wp()
641 other != nullptr ? other->createWeak(this) : nullptr;
665 other != nullptr ? other->createWeak(this) : 0;
/aosp12/frameworks/rs/cpp/util/
H A DRefBase.h109 weakref_type* createWeak(const void* id) const;
300 if (other) m_refs = other->createWeak(this); in wp()
315 m_refs = m_ptr->createWeak(this); in wp()
323 if (other) m_refs = other->createWeak(this); in wp()
341 m_refs = m_ptr->createWeak(this); in wp()
355 other ? other->createWeak(this) : 0;
378 other != NULL ? other->createWeak(this) : NULL;
390 other ? other->createWeak(this) : NULL;
413 other != NULL ? other->createWeak(this) : NULL;
/aosp12/system/core/libutils/
H A DRefBase_fuzz.cpp102 ref->createWeak(nullptr); in __anon8ef134050802()
H A DRefBase.cpp724 RefBase::weakref_type* RefBase::createWeak(const void* id) const in createWeak() function in android::RefBase
/aosp12/frameworks/native/libs/binder/
H A DBinder.cpp469 mRefs = mRemote->createWeak(this); // Held for our entire lifetime. in BpRefBase()