Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java200 public static final DependencyKey<Looper> BG_LOOPER = new DependencyKey<>(BG_LOOPER_NAME);
204 public static final DependencyKey<Looper> MAIN_LOOPER = new DependencyKey<>(MAIN_LOOPER_NAME);
209 new DependencyKey<>(TIME_TICK_HANDLER_NAME);
213 public static final DependencyKey<Handler> MAIN_HANDLER =
214 new DependencyKey<>(MAIN_HANDLER_NAME);
220 new DependencyKey<>(MAIN_EXECUTOR_NAME);
225 new DependencyKey<>(BACKGROUND_EXECUTOR_NAME);
231 new DependencyKey<>(LEAK_REPORT_EMAIL_NAME);
646 public static <T> T get(DependencyKey<T> cls) { in get()
650 public static final class DependencyKey<V> { class in Dependency
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/
H A DTestableDependency.java40 public <T> void injectTestDependency(DependencyKey<T> key, T obj) { in injectTestDependency()