Home
last modified time | relevance | path

Searched refs:mWindowContext (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/
DCarLauncherViewModel.java64 private final Context mWindowContext; field in CarLauncherViewModel
72 mWindowContext = context.createWindowContext(TYPE_APPLICATION_STARTING, /* options */ null); in CarLauncherViewModel()
73 mCar = Car.createCar(mWindowContext); in CarLauncherViewModel()
99 mCarActivityManager.getCarTaskViewController(mWindowContext, mHostLifecycle, in initializeRemoteCarTaskView()
100 mWindowContext.getMainExecutor(), carTaskViewControllerCallback); in initializeRemoteCarTaskView()
233 mWindowContext.getMainExecutor(), in onConnected()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DDisplayController.java306 Context windowContext = perDisplayInfo.mWindowContext; in onConfigurationChanged()
430 final Info newInfo = getNewInfo(oldInfo, perDisplayInfo.mWindowContext); in notifyConfigChangeForDisplay()
436 mPriorityListener.onDisplayInfoChanged(perDisplayInfo.mWindowContext, newInfo, in notifyConfigChangeForDisplay()
760 final Context mWindowContext; field in DisplayController.PerDisplayInfo
765 this.mWindowContext = windowContext; in PerDisplayInfo()
781 mListeners.get(i).onDisplayInfoChanged(mWindowContext, info, flags); in notifyListeners()
794 mWindowContext.unregisterComponentCallbacks(this); in cleanup()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/overlay/
DTaskbarOverlayController.java65 private final Context mWindowContext; field in TaskbarOverlayController
105 mWindowContext = mTaskbarContext.createWindowContext(TYPE_APPLICATION_OVERLAY, null); in TaskbarOverlayController()
125 mWindowContext, mTaskbarContext, mControllers); in requestWindow()
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java489 @Nullable private Context mWindowContext; field in RotaryService
899 if (mWindowContext == null && sWindowContext != null) { in getWindowContext()
900 mWindowContext = sWindowContext.get(); in getWindowContext()
901 if (mWindowContext != null) { in getWindowContext()
905 if (mWindowContext == null) { in getWindowContext()
911 mWindowContext = createWindowContext(TYPE_APPLICATION_OVERLAY, null); in getWindowContext()
912 sWindowContext = new WeakReference<>(mWindowContext); in getWindowContext()
914 return mWindowContext; in getWindowContext()