HomeSort by relevance Sort by last modified time
    Searched refs:Secure (Results 76 - 100 of 279) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupAccessibilityTestActivity.java 75 ACCESSIBILITY_SETTINGS.add(Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD);
78 ACCESSIBILITY_SETTINGS.add(Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED);
94 TTS_SETTINGS.add(Settings.Secure.TTS_DEFAULT_RATE);
97 ACCESSIBILITY_SERVICE_SETTINGS.add(Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES);
99 ACCESSIBILITY_SERVICE_SETTINGS.add(Settings.Secure.TOUCH_EXPLORATION_ENABLED);
180 String value = Settings.Secure.getString(getContentResolver(), setting);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DataCollector.java 86 Settings.Secure.getUriFor(COLLECTOR_ENABLE), false,
91 Settings.Secure.getUriFor(COLLECT_BAD_TOUCHES), false,
96 Settings.Secure.getUriFor(ALLOW_REJECTED_TOUCH_REPORTS), false,
111 mEnableCollector = Build.IS_DEBUGGABLE && 0 != Settings.Secure.getInt(
114 mCollectBadTouches = mEnableCollector && 0 != Settings.Secure.getInt(
117 mAllowReportRejectedTouch = Build.IS_DEBUGGABLE && 0 != Settings.Secure.getInt(
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
AccessibilityFragment.java 83 highContrastPreference.setChecked(Settings.Secure.getInt(getContext().getContentResolver(),
84 Settings.Secure.ACCESSIBILITY_HIGH_TEXT_CONTRAST_ENABLED, 0) == 1);
103 Settings.Secure.putInt(getActivity().getContentResolver(),
104 Settings.Secure.ACCESSIBILITY_HIGH_TEXT_CONTRAST_ENABLED,
117 final boolean accessibilityEnabled = Settings.Secure.getInt(
119 Settings.Secure.ACCESSIBILITY_ENABLED, 0) == 1;
  /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),
520 final String prefList = Settings.Secure.getString(mContext.getContentResolver(),
521 Settings.Secure.TTS_DEFAULT_LOCALE);
532 Settings.Secure.putString(mContext.getContentResolver(),
533 Settings.Secure.TTS_DEFAULT_LOCALE, newPrefList.toString())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
ColorInversionTile.java 21 import android.provider.Settings.Secure;
47 Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
AutoTileManager.java 19 import android.provider.Settings.Secure;
49 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 54 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/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerServiceTest.java 586 boolean isEnabled = Settings.Secure.getInt(context.getContentResolver(),
587 Settings.Secure.ACCESSIBILITY_ENABLED, 0) == 1;
593 Settings.Secure.putInt(context.getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED,
615 String enabledServices = Settings.Secure.getString(context.getContentResolver(),
616 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES);
626 Settings.Secure.putString(context.getContentResolver(),
627 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES, servicesToEnable.toString());
  /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 44 mPreferredTtyMode = Settings.Secure.getInt(
46 Settings.Secure.PREFERRED_TTY_MODE,
Timeouts.java 56 return Settings.Secure.getLong(contentResolver, PREFIX + key, defaultValue);
  /packages/services/Telephony/src/com/android/phone/
CdmaVoicePrivacyCheckBoxPreference.java 89 android.provider.Settings.Secure.putInt(getContext().getContentResolver(),
90 android.provider.Settings.Secure.ENHANCED_VOICE_PRIVACY_ENABLED, enable);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 91 * and shared across users), secure (with signature permission level
107 * ensure the clients do not put bad values. Global and secure settings are
122 private static final String TABLE_SECURE = "secure";
162 // Per user secure settings that moved to the for all users global settings.
165 Settings.Secure.getMovedToGlobalSettings(sSecureMovedToGlobalSettings);
174 // Per user system settings that moved to the per user secure settings.
180 // Per all users global settings that moved to the per user secure settings.
186 // Per user secure settings that are cloned for the managed profiles of the user.
189 Settings.Secure.getCloneToManagedProfileSettings(sSecureCloneToManagedSettings);
380 String name = values.getAsString(Settings.Secure.NAME)
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /frameworks/base/services/core/java/com/android/server/lights/
LightsService.java 185 return Settings.Secure.getIntForUser(getContext().getContentResolver(),
186 Settings.Secure.VR_DISPLAY_MODE,
187 /*default*/Settings.Secure.VR_DISPLAY_MODE_LOW_PERSISTENCE,
198 if (enabled && vrDisplayMode == Settings.Secure.VR_DISPLAY_MODE_LOW_PERSISTENCE) {
  /packages/apps/Settings/src/com/android/settings/
ScreenPinningSettings.java 110 return Settings.Secure.getInt(getContentResolver(),
111 Settings.Secure.LOCK_TO_APP_EXIT_LOCKED, def) != 0;
133 Settings.Secure.putInt(getContentResolver(), Settings.Secure.LOCK_TO_APP_EXIT_LOCKED,
  /packages/apps/Settings/src/com/android/settings/accessibility/
ToggleScreenMagnificationPreferenceFragment.java 156 if (Settings.Secure.getInt(getContentResolver(),
157 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED, 0) == 0) {
176 Settings.Secure.putInt(getContentResolver(),
177 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED, enabled);
  /packages/apps/Settings/src/com/android/settings/applications/
ManageDomainUrls.java 124 mWebAction.setChecked(Settings.Secure.getInt(getContentResolver(),
125 Settings.Secure.WEB_ACTION_ENABLED, 1) != 0);
142 Settings.Secure.putInt(
143 getContentResolver(), Settings.Secure.WEB_ACTION_ENABLED, enabled);
VrListenerSettings.java 32 c.setting = Settings.Secure.ENABLED_VR_LISTENERS;
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationLockscreenPreference.java 82 mAllowRemoteInput = Settings.Secure.getInt(getContext().getContentResolver(),
83 Settings.Secure.LOCK_SCREEN_ALLOW_REMOTE_INPUT, 0) != 0;
126 Settings.Secure.putInt(getContext().getContentResolver(),
127 Settings.Secure.LOCK_SCREEN_ALLOW_REMOTE_INPUT, mAllowRemoteInput ? 1 : 0);
  /packages/apps/Settings/src/com/android/settings/utils/
ServiceListing.java 79 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(mConfig.setting),
88 final String flat = Settings.Secure.getString(context.getContentResolver(), config.setting);
139 Settings.Secure.putString(mContentResolver, mConfig.setting,
145 final String flat = Settings.Secure.getString(mContentResolver, mConfig.setting);
  /packages/apps/Settings/src/com/android/settings/voice/
VoiceInputHelper.java 115 // Get the currently selected interactor from the secure setting.
116 String currentSetting = Settings.Secure.getString(
117 mContext.getContentResolver(), Settings.Secure.VOICE_INTERACTION_SERVICE);
145 // Get the currently selected recognizer from the secure setting.
146 currentSetting = Settings.Secure.getString(
147 mContext.getContentResolver(), Settings.Secure.VOICE_RECOGNITION_SERVICE);

Completed in 3066 milliseconds

1 2 34 5 6 7 8 91011>>