Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java208 public static final DependencyKey<Looper> BG_LOOPER = new DependencyKey<>(BG_LOOPER_NAME);
212 public static final DependencyKey<Looper> MAIN_LOOPER = new DependencyKey<>(MAIN_LOOPER_NAME);
217 new DependencyKey<>(TIME_TICK_HANDLER_NAME);
221 public static final DependencyKey<Handler> MAIN_HANDLER =
222 new DependencyKey<>(MAIN_HANDLER_NAME);
228 new DependencyKey<>(MAIN_EXECUTOR_NAME);
233 new DependencyKey<>(BACKGROUND_EXECUTOR_NAME);
239 new DependencyKey<>(LEAK_REPORT_EMAIL_NAME);
683 public static <T> T get(DependencyKey<T> cls) { in get()
687 public static final class DependencyKey<V> { class in Dependency
[all …]
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
H A DTestableDependency.java40 public <T> void injectTestDependency(DependencyKey<T> key, T obj) { in injectTestDependency()