/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
H A D | LeakDetector.java | 33 public class LeakDetector implements Dumpable { class 42 public LeakDetector( in LeakDetector() method in LeakDetector 138 public static LeakDetector create(DumpManager dumpManager) { in create() 141 return new LeakDetector( in create() 147 return new LeakDetector(null, null, null, dumpManager); in create()
|
H A D | LeakReporter.java | 65 private final LeakDetector mLeakDetector; 69 public LeakReporter(Context context, LeakDetector leakDetector, in LeakReporter()
|
H A D | GarbageMonitor.java | 140 LeakDetector leakDetector, in GarbageMonitor()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
H A D | TunerServiceImpl.java | 47 import com.android.systemui.util.leak.LeakDetector; 82 private final HashSet<Tunable> mTunables = LeakDetector.ENABLED ? new HashSet<>() : null; 84 private final LeakDetector mLeakDetector; 99 LeakDetector leakDetector, in TunerServiceImpl() 202 if (LeakDetector.ENABLED) { in addTunable() 222 if (LeakDetector.ENABLED) { in removeTunable()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/leak/ |
H A D | LeakDetectorTest.java | 44 private LeakDetector mLeakDetector; 72 mLeakDetector = LeakDetector.create(Mockito.mock(DumpManager.class)); in setup() 117 mLeakDetector = new LeakDetector(null, null, null, Mockito.mock(DumpManager.class)); in testDisabled()
|
H A D | LeakReporterTest.java | 46 private LeakDetector mLeakDetector; 62 mLeakDetector = mock(LeakDetector.class); in setup()
|
H A D | GarbageMonitorTest.java | 58 new LeakDetector(null, mTrackedGarbage, null, mDumpManager), in setup()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/ |
H A D | DependencyProvider.java | 69 import com.android.systemui.util.leak.LeakDetector; 143 public LeakDetector provideLeakDetector(DumpManager dumpManager) { in provideLeakDetector() 144 return LeakDetector.create(dumpManager); in provideLeakDetector()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | ExtensionControllerImpl.java | 29 import com.android.systemui.util.leak.LeakDetector; 51 private final LeakDetector mLeakDetector; 61 LeakDetector leakDetector, in ExtensionControllerImpl()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | ExtensionControllerImplTest.java | 42 import com.android.systemui.util.leak.LeakDetector; 68 mock(LeakDetector.class), in setup()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/ |
H A D | FragmentHostManager.java | 40 import com.android.systemui.util.leak.LeakDetector; 88 Dependency.get(LeakDetector.class).trackGarbage(f); in createFragmentHost()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/ |
H A D | NotificationsModule.java | 83 import com.android.systemui.util.leak.LeakDetector; 119 LeakDetector leakDetector, in provideNotificationEntryManager()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationEntryManager.java | 61 import com.android.systemui.util.leak.LeakDetector; 108 private final LeakDetector mLeakDetector; 155 LeakDetector leakDetector, in NotificationEntryManager()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationEntryManagerInflationTest.java | 91 import com.android.systemui.util.leak.LeakDetector; 145 @Mock private LeakDetector mLeakDetector;
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | Dependency.java | 138 import com.android.systemui.util.leak.LeakDetector; 271 @Inject Lazy<LeakDetector> mLeakDetector; 440 mProviders.put(LeakDetector.class, mLeakDetector::get); in start()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationEntryManagerTest.java | 93 import com.android.systemui.util.leak.LeakDetector; 136 @Mock private LeakDetector mLeakDetector;
|