Home
last modified time | relevance | path

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

/aosp14/system/core/libutils/
H A DRefBase_fuzz.cpp63 RefBase::weakref_type* weakRefs; variable
77 weakRefs->decWeak(nullptr); in __anon12db35870202()
87 [](RefThreadState*) -> void { weakRefs->getWeakCount(); }, in __anon12db35870402()
111 if (weakRefs->attemptIncStrong(nullptr)) { in __anon12db35870902()
117 if (weakRefs->attemptIncWeak(nullptr)) { in __anon12db35870a02()
123 weakRefs->incWeak(nullptr); in __anon12db35870b02()
161 weakRefs->decWeak(nullptr); in loop()
191 weakRefs = ref->getWeakRefs(); in LLVMFuzzerTestOneInput()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentController.java382 final ArrayList<WeakReference<PendingIntentRecord>> weakRefs = new ArrayList<>(); in dumpPendingIntents() local
389 weakRefs.add(ref); in dumpPendingIntents()
414 if (weakRefs.size() > 0) { in dumpPendingIntents()
417 for (int i = 0; i < weakRefs.size(); i++) { in dumpPendingIntents()
418 pw.print(" #"); pw.print(i); pw.print(": "); pw.println(weakRefs.get(i)); in dumpPendingIntents()