Home
last modified time | relevance | path

Searched defs:WeakRefData (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/platform/
H A Drefcount.h128 struct WeakRefData : public RefCounted { struct
129 explicit WeakRefData(WeakRefCounted* ptr) : ptr(ptr), next_notifier_id(1) {} in WeakRefData() argument
131 mutable mutex mu;
133 std::map<int, WeakNotifyFn> notifiers;
134 int next_notifier_id;
137 void Notify() { in Notify()
152 WeakRefCounted* GetNewRef() { in GetNewRef()
179 RefCountPtr<WeakRefData> data_{new WeakRefData(this)}; argument