HomeSort by relevance Sort by last modified time
    Searched refs:Secure (Results 151 - 175 of 421) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
WizardManagerHelper.java 174 return Settings.Secure.getInt(context.getContentResolver(),
179 return Settings.Secure.getInt(context.getContentResolver(),
198 return Settings.Secure.getInt(context.getContentResolver(),
  /packages/apps/Settings/src/com/android/settings/accounts/
ManagedProfileSettings.java 38 import static android.provider.Settings.Secure.MANAGED_PROFILE_CONTACT_REMOTE_SEARCH;
112 int value = Settings.Secure.getIntForUser(getContentResolver(),
140 Settings.Secure.putIntForUser(getContentResolver(),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DataCollector.java 87 Settings.Secure.getUriFor(COLLECTOR_ENABLE), false,
92 Settings.Secure.getUriFor(COLLECT_BAD_TOUCHES), false,
97 Settings.Secure.getUriFor(ALLOW_REJECTED_TOUCH_REPORTS), false,
112 mEnableCollector = Build.IS_DEBUGGABLE && 0 != Settings.Secure.getInt(
115 mCollectBadTouches = mEnableCollector && 0 != Settings.Secure.getInt(
118 mAllowReportRejectedTouch = Build.IS_DEBUGGABLE && 0 != Settings.Secure.getInt(
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 390 String enabledServices = Settings.Secure.getString(cr,
391 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES);
392 Settings.Secure.putString(cr, Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES,
394 Settings.Secure.putInt(cr, Settings.Secure.ACCESSIBILITY_ENABLED, 1);
436 Settings.Secure.putString(
437 cr, Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES, null);
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 31 import static android.provider.Settings.Secure.getString;
115 Settings.Secure.TTS_DEFAULT_SYNTH);
324 * value from {@link Settings.Secure#TTS_DEFAULT_LOCALE}, failing which the
332 getString(mContext.getContentResolver(), Settings.Secure.TTS_DEFAULT_LOCALE));
361 * read the value from {@link Settings.Secure#TTS_DEFAULT_LOCALE}. If
368 getString(mContext.getContentResolver(), Settings.Secure.TTS_DEFAULT_LOCALE),
518 final String prefList = Settings.Secure.getString(mContext.getContentResolver(),
519 Settings.Secure.TTS_DEFAULT_LOCALE);
530 Settings.Secure.putString(mContext.getContentResolver(),
531 Settings.Secure.TTS_DEFAULT_LOCALE, newPrefList.toString())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PowerManagerVrTest.java 145 String oldVrListeners = Settings.Secure.getString(cr, ENABLED_VR_LISTENERS);
146 Settings.Secure.putString(cr, ENABLED_VR_LISTENERS, newValue);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/dream/
DreamBackend.java 199 return getBoolean(Settings.Secure.SCREENSAVER_ENABLED, mDreamsEnabledByDefault);
204 setBoolean(Settings.Secure.SCREENSAVER_ENABLED, value);
208 return getBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK,
214 setBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK, value);
218 return getBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_SLEEP,
224 setBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_SLEEP, value);
228 return Settings.Secure.getInt(mContext.getContentResolver(), key, def ? 1 : 0) == 1;
232 Settings.Secure.putInt(mContext.getContentResolver(), key, value ? 1 : 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
ColorInversionTile.java 21 import android.provider.Settings.Secure;
46 Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
PowerNotificationControlsFragment.java 64 Settings.Secure.putInt(getContext().getContentResolver(),
89 int setting = Settings.Secure.getInt(getContext().getContentResolver(), KEY_SHOW_PNC, 0);
TunerSwitch.java 55 Settings.Secure.putString(getContext().getContentResolver(), key, value ? "1" : "0");
  /frameworks/base/services/core/java/com/android/server/location/
LocationBlacklist.java 61 mContext.getContentResolver().registerContentObserver(Settings.Secure.getUriFor(
63 // mContext.getContentResolver().registerContentObserver(Settings.Secure.getUriFor(
129 flatString = Settings.Secure.getStringForUser(mContext.getContentResolver(), key,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CellBroadcastHandler.java 19 import static android.provider.Settings.Secure.CMAS_ADDITIONAL_BROADCAST_PKG;
110 final String additionalPackage = Settings.Secure.getString(
  /packages/apps/Settings/src/com/android/settings/gestures/
PickupGesturePreferenceController.java 33 import static android.provider.Settings.Secure.DOZE_PULSE_ON_PICK_UP;
86 Settings.Secure.putInt(mContext.getContentResolver(),
102 return new InlineSwitchPayload(SECURE_KEY, ResultPayload.SettingsSource.SECURE,
  /packages/apps/Settings/src/com/android/settings/search/
InlinePayload.java 117 case SettingsSource.SECURE:
118 settingsValue = Settings.Secure.getInt(context.getContentResolver(),
147 case SettingsSource.SECURE:
148 return Settings.Secure.putInt(context.getContentResolver(), mSettingKey, newValue);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnUtils.java 68 && Settings.Secure.getIntForUser(context.getContentResolver(),
69 Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN, /* default */ 0, userId) != 0;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessibility/
AccessibilityShortcutServiceFragment.java 102 Settings.Secure.putString(getContext().getContentResolver(),
103 Settings.Secure.ACCESSIBILITY_SHORTCUT_TARGET_SERVICE,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsFragment.java 25 import android.provider.Settings.Secure;
99 return Secure.getInt(activity.getContentResolver(), "user_setup_complete", 0) != 0;
  /packages/services/Telecomm/src/com/android/server/telecom/
TtyManager.java 45 mPreferredTtyMode = Settings.Secure.getInt(
47 Settings.Secure.PREFERRED_TTY_MODE,
  /packages/services/Telephony/src/com/android/phone/
CdmaVoicePrivacySwitchPreference.java 89 android.provider.Settings.Secure.putInt(getContext().getContentResolver(),
90 android.provider.Settings.Secure.ENHANCED_VOICE_PRIVACY_ENABLED, enable);
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityManagerService.java 350 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES,
355 Settings.Secure.
390 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES,
437 if (Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES.equals(which)) {
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
OneTimeSettingsListener.java 15 * Helper used to block tests until a secure settings value has been updated.
26 mResolver.registerContentObserver(Settings.Secure.getUriFor(key), false, this);
  /packages/apps/Settings/src/com/android/settings/
ScreenPinningSettings.java 116 return Settings.Secure.getInt(getContentResolver(),
117 Settings.Secure.LOCK_TO_APP_EXIT_LOCKED, def) != 0;
139 Settings.Secure.putInt(getContentResolver(), Settings.Secure.LOCK_TO_APP_EXIT_LOCKED,
  /packages/apps/Settings/src/com/android/settings/applications/assist/
VoiceInputHelper.java 111 // Get the currently selected interactor from the secure setting.
112 String currentSetting = Settings.Secure.getString(
113 mContext.getContentResolver(), Settings.Secure.VOICE_INTERACTION_SERVICE);
141 // Get the currently selected recognizer from the secure setting.
142 currentSetting = Settings.Secure.getString(
143 mContext.getContentResolver(), Settings.Secure.VOICE_RECOGNITION_SERVICE);
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultAutofillPreferenceController.java 63 final String flattenComponent = Settings.Secure.getString(mContext.getContentResolver(),

Completed in 1460 milliseconds

1 2 3 4 5 67 8 91011>>