Home | History | Annotate | Download | only in facade

Lines Matching defs:Settings

29 import android.provider.Settings;
30 import android.provider.Settings.SettingNotFoundException;
48 * Exposes phone settings functionality.
79 Intent intent = new Intent(Settings.ACTION_NOTIFICATION_POLICY_ACCESS_SETTINGS);
92 android.provider.Settings.System.putInt(mService.getContentResolver(),
93 android.provider.Settings.System.SCREEN_OFF_TIMEOUT, value * 1000);
101 return android.provider.Settings.System.getInt(mService.getContentResolver(),
102 android.provider.Settings.System.SCREEN_OFF_TIMEOUT) / 1000;
193 return android.provider.Settings.System.getInt(mService.getContentResolver(),
194 android.provider.Settings.System.SCREEN_BRIGHTNESS);
216 android.provider.Settings.System.putInt(mService.getContentResolver(),
217 android.provider.Settings.System.SCREEN_BRIGHTNESS, brightness);
320 android.provider.Settings.Global.putString(mService.getContentResolver(),
321 android.provider.Settings.Global.PRIVATE_DNS_MODE, dnsMode);
323 android.provider.Settings.Global.putString(mService.getContentResolver(),
324 android.provider.Settings.Global.PRIVATE_DNS_SPECIFIER, hostname);
329 return android.provider.Settings.Global.getString(mService.getContentResolver(),
330 android.provider.Settings.Global.PRIVATE_DNS_MODE);
336 return android.provider.Settings.Global.getString(mService.getContentResolver(),
337 android.provider.Settings.Global.PRIVATE_DNS_SPECIFIER);