Home
last modified time | relevance | path

Searched refs:ManagedProfileController (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
DFakeManagedProfileController.java19 import com.android.systemui.statusbar.phone.ManagedProfileController;
20 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
23 ManagedProfileController {
DLeakCheckedTest.java24 import com.android.systemui.statusbar.phone.ManagedProfileController;
66 ManagedProfileController.class,
127 } else if (cls == ManagedProfileController.class) { in getLeakChecker()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DAutoTileManager.java80 Dependency.get(ManagedProfileController.class).addCallback(mProfileCallback); in AutoTileManager()
95 Dependency.get(ManagedProfileController.class).removeCallback(mProfileCallback); in destroy()
99 private final ManagedProfileController.Callback mProfileCallback =
100 new ManagedProfileController.Callback() {
104 if (Dependency.get(ManagedProfileController.class).hasActiveProfile()) {
107 mHandler.post(() -> Dependency.get(ManagedProfileController.class)
DManagedProfileController.java17 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
20 public interface ManagedProfileController extends CallbackController<Callback> { interface
DManagedProfileControllerImpl.java31 public class ManagedProfileControllerImpl implements ManagedProfileController {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DWorkModeTile.java30 import com.android.systemui.statusbar.phone.ManagedProfileController;
34 ManagedProfileController.Callback {
37 private final ManagedProfileController mProfileController;
41 mProfileController = Dependency.get(ManagedProfileController.class); in WorkModeTile()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java54 import com.android.systemui.statusbar.phone.ManagedProfileController;
216 mProviders.put(ManagedProfileController.class, () -> in start()