Home | History | Annotate | Download | only in notification

Lines Matching defs:Settings

17 package com.android.settings.notification;
30 import android.provider.Settings;
37 import com.android.settings.R;
38 import com.android.settings.RestrictedListPreference;
39 import com.android.settings.Utils;
40 import com.android.settings.core.PreferenceControllerMixin;
41 import com.android.settings.overlay.FeatureFactory;
223 Settings.Secure.putIntForUser(mContext.getContentResolver(),
224 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS,
235 Settings.Secure.putInt(mContext.getContentResolver(),
236 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, show ? 1 : 0);
237 Settings.Secure.putInt(mContext.getContentResolver(),
238 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS, enabled ? 1 : 0);
313 return Settings.Secure.getInt(context.getContentResolver(),
314 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS, 0) != 0;
318 return Settings.Secure.getIntForUser(context.getContentResolver(),
319 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, 0, userId) != 0;
325 Settings.Secure.getUriFor(Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS);
327 Settings.Secure.getUriFor(Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);