/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | Dependency.java | 148 import dagger.Lazy; 271 @Inject Lazy<LeakDetector> mLeakDetector; 272 @Inject Lazy<LeakReporter> mLeakReporter; 274 @Inject Lazy<TunerService> mTunerService; 335 @Inject @Main Lazy<Looper> mMainLooper; 336 @Inject @Main Lazy<Handler> mMainHandler; 342 @Inject Lazy<ClockManager> mClockManager; 347 @Inject Lazy<DockManager> mDockManager; 350 @Inject Lazy<AlarmManager> mAlarmManager; 354 @Inject Lazy<CommandQueue> mCommandQueue; [all …]
|
H A D | ActivityStarterDelegate.java | 32 import dagger.Lazy; 42 private Lazy<Optional<StatusBar>> mActualStarterOptionalLazy; 45 public ActivityStarterDelegate(Lazy<Optional<StatusBar>> statusBarOptionalLazy) { in ActivityStarterDelegate()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/ |
H A D | NotificationsModule.java | 90 import dagger.Lazy; 117 Lazy<NotificationRowBinder> notificationRowBinderLazy, in provideNotificationEntryManager() 140 Lazy<Optional<StatusBar>> statusBarOptionalLazy, in provideNotificationGutsManager() 236 Lazy<NotificationGroupManagerLegacy> groupManagerLegacy) { in provideGroupMembershipManager() 247 Lazy<GroupMembershipManager> groupMembershipManager, in provideGroupExpansionManager() 259 Lazy<NotificationsControllerImpl> realController, in provideNotificationsController() 260 Lazy<NotificationsControllerStub> stubController) { in provideNotificationsController() 275 Lazy<NotifPipeline> pipeline, in provideCommonNotifCollection() 287 Lazy<ShadeEventCoordinator> shadeEventCoordinatorLazy, in provideNotifShadeEventSource() 304 Lazy<NotifPipeline> pipeline, in provideOnUserInteractionCallback() [all …]
|
/aosp12/system/tools/hidl/test/lazy_test/ |
H A D | hidl_lazy_test_server.cpp | 28 class Lazy : public ILazy { class 33 ::android::hardware::Return<void> Lazy::setCustomActiveServicesCallback() { in setCustomActiveServicesCallback() 64 CHECK(OK == LazyServiceRegistrar::getInstance().registerService(new Lazy, "default1")); in main() 65 CHECK(OK == LazyServiceRegistrar::getInstance().registerService(new Lazy, "default2")); in main()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/dagger/ |
H A D | ControlsComponent.kt | 32 import dagger.Lazy 46 private val lazyControlsController: Lazy<ControlsController>, 47 private val lazyControlsUiController: Lazy<ControlsUiController>, 48 private val lazyControlsListingController: Lazy<ControlsListingController>,
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | ShadeControllerImpl.java | 37 import dagger.Lazy; 51 protected final Lazy<Optional<StatusBar>> mStatusBarOptionalLazy; 52 private final Lazy<AssistManager> mAssistManagerLazy; 64 Lazy<Optional<StatusBar>> statusBarOptionalLazy, in ShadeControllerImpl() 65 Lazy<AssistManager> assistManagerLazy, in ShadeControllerImpl()
|
H A D | DozeServiceHost.java | 54 import dagger.Lazy; 79 private final Lazy<BiometricUnlockController> mBiometricUnlockControllerLazy; 81 private final Lazy<AssistManager> mAssistManagerLazy; 103 Lazy<BiometricUnlockController> biometricUnlockControllerLazy, in DozeServiceHost() 105 Lazy<AssistManager> assistManagerLazy, in DozeServiceHost()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/ |
H A D | TvStatusBar.java | 32 import dagger.Lazy; 42 private final Lazy<AssistManager> mAssistManagerLazy; 46 Lazy<AssistManager> assistManagerLazy) { in TvStatusBar()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/ |
H A D | PluginDependencyProvider.java | 26 import dagger.Lazy; 34 private final Lazy<PluginManager> mManagerLazy; 39 public PluginDependencyProvider(Lazy<PluginManager> managerLazy) { in PluginDependencyProvider()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/dagger/ |
H A D | KeyguardModule.java | 59 import dagger.Lazy; 83 Lazy<KeyguardViewController> statusBarKeyguardViewManagerLazy, in newKeyguardViewMediator() 98 Lazy<KeyguardUnlockAnimationController> keyguardUnlockAnimationController, in newKeyguardViewMediator() 100 Lazy<NotificationShadeDepthController> notificationShadeDepthController) { in newKeyguardViewMediator()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
H A D | NavBarHelper.java | 59 import dagger.Lazy; 76 private final Lazy<AssistManager> mAssistManagerLazy; 77 private final Lazy<Optional<StatusBar>> mStatusBarOptionalLazy; 106 Lazy<AssistManager> assistManagerLazy, in NavBarHelper() 107 Lazy<Optional<StatusBar>> statusBarOptionalLazy, in NavBarHelper()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/dagger/ |
H A D | ControlsComponentTest.kt | 32 import dagger.Lazy 153 Lazy { controller }, 154 Lazy { uiController }, 155 Lazy { listingController },
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
H A D | OverviewProxyRecentsImpl.java | 35 import dagger.Lazy; 45 private final Lazy<Optional<StatusBar>> mStatusBarOptionalLazy; 54 public OverviewProxyRecentsImpl(Lazy<Optional<StatusBar>> statusBarOptionalLazy) { in OverviewProxyRecentsImpl()
|
/aosp12/packages/services/Car/service/src/com/android/car/storagemonitoring/ |
H A D | IoStatsTracker.java | 34 private abstract class Lazy<T> { class in IoStatsTracker 68 final Lazy<List<ProcessInfo>> processTable = new Lazy<List<ProcessInfo>>() { in update()
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/volume/ |
H A D | VolumeUI.java | 39 import dagger.Lazy; 49 private final Lazy<VolumeDialogComponent> mVolumeDialogComponentLazy; 84 Lazy<VolumeDialogComponent> volumeDialogComponentLazy in VolumeUI()
|
/aosp12/packages/apps/TV/src/com/android/tv/ |
H A D | TvApplication.java | 72 import dagger.Lazy; 108 @Inject Lazy<ChannelDataManager> mChannelDataManager; 111 @Inject Lazy<DvrManager> mDvrManager; 113 @Inject Lazy<DvrDataManager> mDvrDataManager; 121 @Inject Lazy<TvInputManagerHelper> mLazyTvInputManagerHelper; 128 @Inject Lazy<EpgReader> mEpgReader; 556 public Lazy<EpgReader> providesEpgReader() { in providesEpgReader()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/init/ |
H A D | NotificationsControllerImpl.kt | 47 import dagger.Lazy 66 private val notifPipeline: Lazy<NotifPipeline>, 68 private val newNotifPipeline: Lazy<NotifPipelineInitializer>, 73 private val groupManagerLegacy: Lazy<NotificationGroupManagerLegacy>,
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/ |
H A D | CarSystemBarController.java | 47 import dagger.Lazy; 63 private final Lazy<UserNameViewController> mUserNameViewControllerLazy; 64 private final Lazy<PrivacyChipViewController> mPrivacyChipViewControllerLazy; 65 private final Lazy<MicQcPanel.MicPrivacyElementsProvider> mMicPrivacyElementsProviderLazy; 97 Lazy<UserNameViewController> userNameViewControllerLazy, in CarSystemBarController() 98 Lazy<PrivacyChipViewController> privacyChipViewControllerLazy, in CarSystemBarController() 101 Lazy<MicQcPanel.MicPrivacyElementsProvider> micPrivacyElementsProvider) { in CarSystemBarController()
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/contacts/ |
H A D | ContactsModule.java | 30 import dagger.Lazy; 41 Lazy<ContactDisplayPreferencesImpl> impl, in provideContactDisplayPreferences()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/ |
H A D | SensorModule.java | 36 import dagger.Lazy; 93 Lazy<PostureDependentProximitySensor> postureDependentProximitySensorProvider, in provideProximitySensor() 94 Lazy<ProximitySensorImpl> proximitySensorProvider in provideProximitySensor()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
H A D | PhoneStateMonitor.java | 48 import dagger.Lazy; 73 private final Lazy<Optional<StatusBar>> mStatusBarOptionalLazy; 81 Lazy<Optional<StatusBar>> statusBarOptionalLazy, BootCompleteCache bootCompleteCache) { in PhoneStateMonitor()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
H A D | AirplaneModeTile.java | 54 import dagger.Lazy; 61 private final Lazy<ConnectivityManager> mLazyConnectivityManager; 76 Lazy<ConnectivityManager> lazyConnectivityManager in AirplaneModeTile()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
H A D | DozeUi.java | 42 import dagger.Lazy; 61 private final Lazy<StatusBarStateController> mStatusBarStateController; 83 DozeLog dozeLog, Lazy<StatusBarStateController> statusBarStateController) { in DozeUi()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/ |
H A D | UnfoldTransitionModule.kt | 30 import dagger.Lazy 46 screenStatusProvider: Lazy<LifecycleScreenStatusProvider>,
|
/aosp12/packages/apps/TV/common/src/com/android/tv/common/ |
H A D | BaseApplication.java | 32 import dagger.Lazy; 39 @Inject Lazy<RecordingStorageStatusManager> mRecordingStorageStatusManager;
|