Searched refs:Secure (Results 51 - 75 of 89) sorted by relevance

1234

/frameworks/base/services/core/java/com/android/server/search/
H A DSearchables.java378 return Settings.Secure.getString(mContext.getContentResolver(),
379 Settings.Secure.SEARCH_GLOBAL_SEARCH_ACTIVITY);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DScreenMagnifier.java855 Settings.Secure.putFloat(mContext.getContentResolver(),
856 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_SCALE, scale);
863 return Settings.Secure.getFloat(mContext.getContentResolver(),
864 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_SCALE,
869 return (Settings.Secure.getInt(context.getContentResolver(),
870 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE,
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java41 import android.provider.Settings.Secure;
453 final String defaultApp = Secure.getStringForUser(mContext.getContentResolver(),
454 Secure.SMS_DEFAULT_APPLICATION, userId);
/frameworks/base/core/java/android/os/
H A DUserManager.java745 Settings.Secure.putStringForUser(context.getContentResolver(),
746 Settings.Secure.SKIP_FIRST_USE_HINTS, "1", guest.id);
/frameworks/base/media/java/android/media/
H A DMediaFocusControl.java130 Settings.Secure.getUriFor(Settings.Secure.ENABLED_NOTIFICATION_LISTENERS);
136 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(
137 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS), false, this);
178 final String enabledNotifListeners = Settings.Secure.getStringForUser(
180 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
241 final String enabledNotifListeners = Settings.Secure.getStringForUser(
243 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
H A DAudioService.java2455 mMusicActiveMs = MathUtils.constrain(Settings.Secure.getIntForUser(mContentResolver,
2456 Settings.Secure.UNSAFE_VOLUME_MUSIC_ACTIVE_MS, 0, UserHandle.USER_CURRENT),
4432 Settings.Secure.putIntForUser(mContentResolver,
4433 Settings.Secure.UNSAFE_VOLUME_MUSIC_ACTIVE_MS, musicActiveMs,
4984 int isDisabled = Settings.Secure.getInt(mContentResolver,
4985 Settings.Secure.USB_AUDIO_AUTOMATIC_ROUTING_DISABLED, 0);
5678 mLongPressTimeout = Settings.Secure.getIntForUser(cr,
5679 Settings.Secure.LONG_PRESS_TIMEOUT, 500, UserHandle.USER_CURRENT);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java184 SECURE_SETTINGS_WHITELIST.add(Settings.Secure.DEFAULT_INPUT_METHOD);
185 SECURE_SETTINGS_WHITELIST.add(Settings.Secure.SKIP_FIRST_USE_HINTS);
186 SECURE_SETTINGS_WHITELIST.add(Settings.Secure.INSTALL_NON_MARKET_APPS);
190 SECURE_SETTINGS_DEVICEOWNER_WHITELIST.add(Settings.Secure.LOCATION_MODE);
4868 Settings.Secure.putIntForUser(mContext.getContentResolver(),
4869 Settings.Secure.WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON, 0,
4876 Settings.Secure.putIntForUser(mContext.getContentResolver(),
4877 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF,
4879 Settings.Secure
[all...]
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java226 else if ("secure".equals(table)) targetUri = Settings.Secure.getUriFor(key);
/frameworks/base/core/java/android/view/
H A DViewConfiguration.java434 return AppGlobals.getIntCoreSetting(Settings.Secure.LONG_PRESS_TIMEOUT,
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionService.java372 final String enabledNotifListeners = Settings.Secure.getStringForUser(mContentResolver,
373 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
587 private final Uri mSecureSettingsUri = Settings.Secure.getUriFor(
588 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java459 if (0 != Settings.Secure.getIntForUser(mContext.getContentResolver(),
460 Settings.Secure.TRUST_AGENTS_INITIALIZED, 0, userId)) {
482 Settings.Secure.putIntForUser(mContext.getContentResolver(),
483 Settings.Secure.TRUST_AGENTS_INITIALIZED, 1, userId);
/frameworks/base/services/core/java/com/android/server/updates/
H A DConfigUpdateInstallReceiver.java75 // get the certificate from Settings.Secure
120 String cert = Settings.Secure.getString(cr, UPDATE_CERTIFICATE_KEY);
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java103 assertTrue(Settings.Secure.putString(mContext.getContentResolver(), key, value));
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPasswordTextView.java332 return (Settings.Secure.getIntForUser(mContext.getContentResolver(),
333 Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD, 0,
H A DKeyguardHostView.java168 mUserSetupCompleted = Settings.Secure.getIntForUser(mContext.getContentResolver(),
169 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java367 final String searchUri = Settings.Secure.getString(getActivity().getContentResolver(),
368 Settings.Secure.PRINT_SERVICE_SEARCH_URI);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java209 return Settings.Secure.getInt(context.getContentResolver(),
210 Settings.Secure.PREFERRED_TTY_MODE, TelecomManager.TTY_MODE_OFF)
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java507 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
657 resolver.registerContentObserver(Settings.Secure.getUriFor(
658 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
660 resolver.registerContentObserver(Settings.Secure.getUriFor(
661 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
675 resolver.registerContentObserver(Settings.Secure.getUriFor(
676 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
678 resolver.registerContentObserver(Settings.Secure.getUriFor(
679 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
864 & Settings.Secure
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java410 resolver.registerContentObserver(Settings.Secure.getUriFor(
411 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
412 resolver.registerContentObserver(Settings.Secure.getUriFor(
413 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
414 resolver.registerContentObserver(Settings.Secure.getUriFor(
415 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
416 resolver.registerContentObserver(Settings.Secure.getUriFor(
417 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this);
422 Settings.Secure.getUriFor(Settings.Secure
[all...]
H A DLocationManagerService.java269 Settings.Secure.getUriFor(Settings.Secure.LOCATION_PROVIDERS_ALLOWED), true,
962 return Settings.Secure.isLocationProviderEnabledForUser(resolver, provider, mCurrentUserId);
2352 boolean allowMocks = Settings.Secure.getInt(mContext.getContentResolver(),
2353 Settings.Secure.ALLOW_MOCK_LOCATION, 0) == 1;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneBase.java1213 int mode = Settings.Secure.getInt(getContext().getContentResolver(),
1214 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF);
1215 if (mode == Settings.Secure.LOCATION_MODE_OFF) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java635 int mode = Settings.Secure.getInt(getContext().getContentResolver(),
636 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF);
637 if (mode == Settings.Secure.LOCATION_MODE_OFF) {
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java410 return getSecureSettingInt(Settings.Secure.TTS_DEFAULT_RATE, Engine.DEFAULT_RATE);
419 return Settings.Secure.getInt(getContentResolver(), name, defaultValue);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java171 * Secure setting whether analytics are collected on the keyguard.
681 final long lockAfterTimeout = Settings.Secure.getInt(cr,
682 Settings.Secure.LOCK_SCREEN_LOCK_AFTER_TIMEOUT,
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java82 /** Hidden field Settings.Secure.ENABLED_NOTIFICATION_LISTENERS */
233 final String enabledNotificationListeners = Settings.Secure.getString(

Completed in 526 milliseconds

1234