HomeSort by relevance Sort by last modified time
    Searched defs:TunerService (Results 1 - 3 of 3) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickStatusBarHeader.java 49 import com.android.systemui.tuner.TunerService;
307 TunerService.isTunerEnabled(mContext) ? View.VISIBLE : View.INVISIBLE);
355 if (TunerService.isTunerEnabled(mContext)) {
356 TunerService.showResetRequest(mContext, new Runnable() {
365 TunerService.setTunerEnabled(mContext, true);
StatusBarHeaderView.java 54 import com.android.systemui.tuner.TunerService;
351 TunerService.isTunerEnabled(mContext) ? View.VISIBLE : View.INVISIBLE);
522 if (TunerService.isTunerEnabled(mContext)) {
523 TunerService.showResetRequest(mContext, new Runnable() {
532 TunerService.setTunerEnabled(mContext, true);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerService.java 53 public class TunerService extends SystemUI {
81 putComponent(TunerService.class, this);
202 private static TunerService sInstance;
204 public static TunerService get(Context context) {
205 TunerService service = null;
208 service = sysUi.getComponent(TunerService.class);
217 private static TunerService getStaticService(Context context) {
219 sInstance = new TunerService();
238 context.sendBroadcast(new Intent(TunerService.ACTION_CLEAR));
240 TunerService.setTunerEnabled(context, false)
    [all...]

Completed in 63 milliseconds