Home
last modified time | relevance | path

Searched refs:TunerService (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DTunerService.java49 public class TunerService extends SystemUI { class
66 putComponent(TunerService.class, this); in start()
149 private static TunerService sInstance;
151 public static TunerService get(Context context) { in get()
153 TunerService service = sysUi.getComponent(TunerService.class); in get()
161 private static TunerService getStaticService(Context context) { in getStaticService()
163 sInstance = new TunerService(); in getStaticService()
182 context.sendBroadcast(new Intent(TunerService.ACTION_CLEAR)); in showResetRequest()
184 TunerService.setTunerEnabled(context, false); in showResetRequest()
DTunerFragment.java43 import com.android.systemui.tuner.TunerService.Tunable;
125 TunerService tunerService = TunerService.get(getContext()); in registerPrefs()
138 TunerService tunerService = TunerService.get(getContext()); in unregisterPrefs()
162 TunerService.showResetRequest(getContext(), new Runnable() { in onOptionsItemSelected()
DStatusBarSwitch.java28 import com.android.systemui.tuner.TunerService.Tunable;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DQSTileHost.java52 import com.android.systemui.tuner.TunerService;
53 import com.android.systemui.tuner.TunerService.Tunable;
114 TunerService.get(mContext).addTunable(this, TILES_SETTING); in QSTileHost()
118 TunerService.get(mContext).removeTunable(this); in destroy()
DStatusBarIconController.java45 import com.android.systemui.tuner.TunerService;
46 import com.android.systemui.tuner.TunerService.Tunable;
131 TunerService.get(mContext).addTunable(this, ICON_BLACKLIST); in StatusBarIconController()
DStatusBarHeaderView.java52 import com.android.systemui.tuner.TunerService;
338 TunerService.isTunerEnabled(mContext) ? View.VISIBLE : View.INVISIBLE); in updateVisibilities()
505 if (TunerService.isTunerEnabled(mContext)) { in onClick()
506 TunerService.showResetRequest(mContext, new Runnable() { in onClick()
515 TunerService.setTunerEnabled(mContext, true); in onClick()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DSignalClusterView.java41 import com.android.systemui.tuner.TunerService;
42 import com.android.systemui.tuner.TunerService.Tunable;
180 TunerService.get(mContext).addTunable(this, StatusBarIconController.ICON_BLACKLIST); in onAttachedToWindow()
196 TunerService.get(mContext).removeTunable(this); in onDetachedFromWindow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSystemUIApplication.java43 com.android.systemui.tuner.TunerService.class,