Home
last modified time | relevance | path

Searched refs:mRotationLockController (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DRotationButtonController.java68 private RotationLockController mRotationLockController; field in RotationButtonController
93 if (mRotationLockController.isRotationLocked()) {
123 mRotationLockController = Dependency.get(RotationLockController.class); in RotationButtonController()
168 mRotationLockController.setRotationLockedAtAngle(true /* locked */, rotationSuggestion); in setRotationLockedAtAngle()
172 return mRotationLockController.isRotationLocked(); in isRotationLocked()
DPhoneStatusBarPolicy.java109 private final RotationLockController mRotationLockController; field in PhoneStatusBarPolicy
141 mRotationLockController = Dependency.get(RotationLockController.class); in PhoneStatusBarPolicy()
231 mRotationLockController.addCallback(this); in PhoneStatusBarPolicy()
551 mRotationLockController, mContext); in onRotationLockStateChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java200 @Inject Lazy<RotationLockController> mRotationLockController; field in Dependency
333 mProviders.put(RotationLockController.class, mRotationLockController::get); in start()