Home
last modified time | relevance | path

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

/aosp_15_r20/external/leakcanary2/shark/src/test/java/shark/
H A DReferenceMatcherTest.kt33 LibraryLeakReferenceMatcher(StaticFieldPattern("GcRoot", "shortestPath")) in shortestPathExcluded()
49 val expectedMatcher = LibraryLeakReferenceMatcher(StaticFieldPattern("GcRoot", "shortestPath")) in allPathsExcluded_ShortestWins()
53 LibraryLeakReferenceMatcher(InstanceFieldPattern("HasLeaking", "leaking")) in allPathsExcluded_ShortestWins()
81 val matcher = LibraryLeakReferenceMatcher(JavaLocalPattern("kroutine")) in excludedThread()
100 LibraryLeakReferenceMatcher( in overrideSuperclassExclusion()
116 val matcher = LibraryLeakReferenceMatcher(NativeGlobalVariablePattern("Leaking")) in nativeGlobalVariableLibraryLeak()
136 val matcher = LibraryLeakReferenceMatcher(NativeGlobalVariablePattern("Leaking")) in nativeGlobalVariableShortestPathExcluded()
H A DLeakTraceRenderingTest.kt175 LibraryLeakReferenceMatcher(pattern = InstanceFieldPattern("ClassA", "leak")) in <lambda>()
210 LibraryLeakReferenceMatcher(pattern = StaticFieldPattern("GcRoot", "leak")) in <lambda>()
/aosp_15_r20/external/leakcanary2/shark-android/api/
H A Dshark-android.api179 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
180 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
181 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
192 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
193 …lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lshark/LibraryLeakReferenceMatcher;
194 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
195 …lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lshark/LibraryLeakReferenceMatcher;
196 …/lang/String;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
197 …lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lshark/LibraryLeakReferenceMatcher;
/aosp_15_r20/external/leakcanary2/shark/src/main/java/shark/internal/
H A DGcRootProvider.kt14 import shark.LibraryLeakReferenceMatcher in <lambda>()
51 val matchedLibraryLeak: LibraryLeakReferenceMatcher?, in <lambda>()
74 if (referenceMatcher is LibraryLeakReferenceMatcher) { in <lambda>()
H A DReference.kt3 import shark.LibraryLeakReferenceMatcher
36 val matchedLibraryLeak: LibraryLeakReferenceMatcher?,
H A DReferencePathNode.kt4 import shark.LibraryLeakReferenceMatcher
17 val matcher: LibraryLeakReferenceMatcher
H A DClassReferenceReader.kt6 import shark.LibraryLeakReferenceMatcher in <lambda>()
68 matchedLibraryLeak = referenceMatcher as LibraryLeakReferenceMatcher?, in <lambda>()
H A DJavaLocalReferenceReader.kt7 import shark.LibraryLeakReferenceMatcher in <lambda>()
69 matchedLibraryLeak = referenceMatcher as LibraryLeakReferenceMatcher?, in <lambda>()
H A DFieldInstanceReferenceReader.kt10 import shark.LibraryLeakReferenceMatcher in <lambda>()
124 matchedLibraryLeak = referenceMatcher as LibraryLeakReferenceMatcher?, in <lambda>()
H A DAndroidReferenceReaders.kt5 import shark.LibraryLeakReferenceMatcher in <lambda>()
99 matchedLibraryLeak = LibraryLeakReferenceMatcher( in <lambda>()
/aosp_15_r20/external/leakcanary2/shark-android/src/main/java/shark/
H A DAndroidReferenceMatchers.kt1673 ): LibraryLeakReferenceMatcher { in <lambda>()
1687 ): LibraryLeakReferenceMatcher { in <lambda>()
1696 ): LibraryLeakReferenceMatcher { in <lambda>()
1704 ): LibraryLeakReferenceMatcher { in <lambda>()
1705 return LibraryLeakReferenceMatcher( in <lambda>()
/aosp_15_r20/external/leakcanary2/shark/src/main/java/shark/
H A DReferenceMatcher.kt20 data class LibraryLeakReferenceMatcher( dataClass
47 (matcher is LibraryLeakReferenceMatcher && matcher.patternApplies(graph))) in filterFor()
H A DHeapAnalyzer.kt435 fun firstLibraryLeakMatcher(): LibraryLeakReferenceMatcher? { in <lambda>()
442 fun asNodesWithMatchers(): List<Pair<ReferencePathNode, LibraryLeakReferenceMatcher?>> { in <lambda>()
461 mutableMapOf<String, Pair<LibraryLeakReferenceMatcher, MutableList<LeakTrace>>>() in <lambda>()
/aosp_15_r20/external/leakcanary2/leakcanary-android-release/src/main/java/leakcanary/
H A DHeapAnalysisConfig.kt12 import shark.LibraryLeakReferenceMatcher
/aosp_15_r20/external/leakcanary2/shark/api/
H A Dshark.api294 public final class shark/LibraryLeakReferenceMatcher : shark/ReferenceMatcher {
300 …rencePattern;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Lshark/LibraryLeakReferenceMatcher;
301LibraryLeakReferenceMatcher;Lshark/ReferencePattern;Ljava/lang/String;Lkotlin/jvm/functions/Functi…
/aosp_15_r20/external/leakcanary2/leakcanary-android-core/src/main/java/leakcanary/
H A DLeakCanary.kt17 import shark.LibraryLeakReferenceMatcher in <lambda>()