Home
last modified time | relevance | path

Searched refs:LightBarController (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java48 import com.android.systemui.statusbar.phone.LightBarController;
68 private final LightBarController mLightBarController;
120 mLightBarController = Dependency.get(LightBarController.class); in QSCustomizer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarController.java41 public class LightBarController implements BatteryController.BatteryStateChangeCallback, Dumpable { class
80 public LightBarController(Context ctx) { in LightBarController() method in LightBarController
DNavigationBarFragment.java153 private LightBarController mLightBarController;
1011 public void setLightBarController(LightBarController lightBarController) { in setLightBarController()
DStatusBar.java362 private LightBarController mLightBarController;
934 mLightBarController = Dependency.get(LightBarController.class); in makeStatusBarView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java53 import com.android.systemui.statusbar.phone.LightBarController;
316 mProviders.put(LightBarController.class, () -> new LightBarController(mContext)); in start()