Home | History | Annotate | Download | only in settings

Lines Matching refs:Settings

17 package com.android.settings;
44 import android.provider.Settings;
166 mEnableAdb.setChecked(Settings.Secure.getInt(cr,
167 Settings.Secure.ADB_ENABLED, 0) != 0);
168 mKeepScreenOn.setChecked(Settings.System.getInt(cr,
169 Settings.System.STAY_ON_WHILE_PLUGGED_IN, 0) != 0);
170 mAllowMockLocation.setChecked(Settings.Secure.getInt(cr,
171 Settings.Secure.ALLOW_MOCK_LOCATION, 0) != 0);
243 Settings.System.putInt(getActivity().getContentResolver(),
244 Settings.System.POINTER_LOCATION, mPointerLocation.isChecked() ? 1 : 0);
248 mPointerLocation.setChecked(Settings.System.getInt(getActivity().getContentResolver(),
249 Settings.System.POINTER_LOCATION, 0) != 0);
253 Settings.System.putInt(getActivity().getContentResolver(),
254 Settings.System.SHOW_TOUCHES, mShowTouches.isChecked() ? 1 : 0);
258 mShowTouches.setChecked(Settings.System.getInt(getActivity().getContentResolver(),
259 Settings.System.SHOW_TOUCHES, 0) != 0);
311 mShowCpuUsage.setChecked(Settings.System.getInt(getActivity().getContentResolver(),
312 Settings.System.SHOW_PROCESSES, 0) != 0);
317 Settings.System.putInt(getActivity().getContentResolver(),
318 Settings.System.SHOW_PROCESSES, value ? 1 : 0);
337 mImmediatelyDestroyActivities.setChecked(Settings.System.getInt(
338 getActivity().getContentResolver(), Settings.System.ALWAYS_FINISH_ACTIVITIES, 0) != 0);
401 Settings
402 Settings.Secure.ANR_SHOW_BACKGROUND,
407 mShowAllANRs.setChecked(Settings.Secure.getInt(
408 getActivity().getContentResolver(), Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0);
431 Settings.Secure.putInt(getActivity().getContentResolver(),
432 Settings.Secure.ADB_ENABLED, 0);
435 Settings.System.putInt(getActivity().getContentResolver(),
436 Settings.System.STAY_ON_WHILE_PLUGGED_IN,
440 Settings.Secure.putInt(getActivity().getContentResolver(),
441 Settings.Secure.ALLOW_MOCK_LOCATION,
492 Settings.Secure.putInt(getActivity().getContentResolver(),
493 Settings.Secure.ADB_ENABLED, 1);