HomeSort by relevance Sort by last modified time
    Searched refs:Secure (Results 376 - 400 of 515) sorted by null

<<11121314151617181920>>

  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerService.java 268 Settings.Secure.putStringForUser(mContext.getContentResolver(),
269 Settings.Secure.AUTOFILL_SERVICE, null, userId);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 774 * A {@link ContentObserver} to monitor {@link Settings.Secure#SHOW_IME_WITH_HARD_KEYBOARD}.
776 * <p>Note that {@link Settings.Secure#SHOW_IME_WITH_HARD_KEYBOARD} is not a public API.
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsService.java 165 && !"secure".equalsIgnoreCase(arg)
309 : "secure".equals(table) ? Settings.Secure.CONTENT_URI
339 else if ("secure".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SECURE;
370 } else if ("secure".equals(table)) callPutCommand = Settings.CALL_METHOD_PUT_SECURE;
397 else if ("secure".equals(table)) targetUri = Settings.Secure.getUriFor(key);
416 if ("secure".equals(table)) callResetCommand = Settings.CALL_METHOD_RESET_SECURE;
475 pw.println(" {default} to set as the default, case-insensitive only for global/secure namespace");
479 pw.println(" Reset the global/secure table for a package with mode.")
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 89 mEdgeBleed = Settings.Secure.getInt(getContext().getContentResolver(),
91 mRoundedDivider = Settings.Secure.getInt(getContext().getContentResolver(),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
FalsingManager.java 102 Settings.Secure.getUriFor(ENFORCE_BOUNCER), false,
117 mEnforceBouncer = 0 != Settings.Secure.getInt(mContext.getContentResolver(),
367 public void onTrackingStarted(boolean secure) {
371 mHumanInteractionClassifier.setType(secure ?
  /frameworks/base/services/core/java/com/android/server/
BluetoothManagerService.java 499 && Settings.Secure.getInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 0)
507 mName = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME);
508 mAddress = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS);
522 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME, name);
525 Slog.d(TAG, "Stored Bluetooth name: " + Settings.Secure.getString(mContentResolver,
531 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS, address);
535 "Stored Bluetoothaddress: " + Settings.Secure.getString(mContentResolver,
541 Settings.Secure.putInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 1);
    [all...]
RescueParty.java 210 Settings.Secure.resetToDefaultsAsUser(resolver, null, mode, userId);
212 res = new RuntimeException("Failed to reset secure settings for " + userId, t);
UiModeManagerService.java 229 mNightMode = Settings.Secure.getInt(context.getContentResolver(),
230 Settings.Secure.UI_NIGHT_MODE, defaultNightMode);
316 Settings.Secure.putInt(getContext().getContentResolver(),
317 Settings.Secure.UI_NIGHT_MODE, mode);
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStartController.java 213 String lastVers = Settings.Secure.getString(
214 resolver, Settings.Secure.LAST_SETUP_SHOWN);
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 540 * Save the always-on package and lockdown config into Settings.Secure
546 mSystemServices.settingsSecurePutStringForUser(Settings.Secure.ALWAYS_ON_VPN_APP,
548 mSystemServices.settingsSecurePutIntForUser(Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN,
556 * Load the always-on package and lockdown config from Settings.Secure
563 Settings.Secure.ALWAYS_ON_VPN_APP, mUserHandle);
565 Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN, 0 /*default*/, mUserHandle) != 0;
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ConditionProviders.java 88 c.secureSettingName = Settings.Secure.ENABLED_NOTIFICATION_POLICY_ACCESS_PACKAGES;
90 c.secondarySettingName = Settings.Secure.ENABLED_NOTIFICATION_LISTENERS;
ScheduleConditionProvider.java 297 Settings.Secure.putStringForUser(mContext.getContentResolver(),
307 final String setting = Settings.Secure.getStringForUser(
  /frameworks/base/services/core/java/com/android/server/search/
Searchables.java 400 return Settings.Secure.getString(mContext.getContentResolver(),
401 Settings.Secure.SEARCH_GLOBAL_SEARCH_ACTIVITY);
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationComparatorTest.java 103 smsPkg = Settings.Secure.getString(mContext.getContentResolver(),
104 Settings.Secure.SMS_DEFAULT_APPLICATION);
RankingHelperTest.java 62 import android.provider.Settings.Secure;
165 Secure.putIntForUser(contentResolver,
166 Secure.NOTIFICATION_BADGING, 1, UserHandle.getUserId(UID));
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiController.java 135 == Settings.Secure.LOCATION_MODE_OFF;
193 == Settings.Secure.LOCATION_MODE_OFF) {
  /packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
NotificationListenerActivity.java 28 import android.provider.Settings.Secure;
144 String listeners = Secure.getString(getContentResolver(),
  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
jar.go 29 // testing but it is not secure: it means that the HTTP server for foo.com can
54 // secure: it means that the HTTP server for foo.co.uk can set a cookie
96 Secure bool
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
418 e.Secure = c.Secure
  /prebuilts/go/linux-x86/src/net/http/cookiejar/
jar.go 29 // testing but it is not secure: it means that the HTTP server for foo.com can
54 // secure: it means that the HTTP server for foo.co.uk can set a cookie
96 Secure bool
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
418 e.Secure = c.Secure
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 389 return Settings.Secure.getInt(getContext().getContentResolver(),
390 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF) !=
391 Settings.Secure.LOCATION_MODE_OFF;
    [all...]
  /cts/tests/tests/print/printTestUtilLib/src/android/print/test/
BasePrintTest.java 228 "settings get secure " + Settings.Secure.DISABLED_PRINT_SERVICES);
246 SystemUtil.runShellCommand(instrumentation, "settings put secure "
247 + Settings.Secure.DISABLED_PRINT_SERVICES + " " + builder);
255 "settings put secure " + Settings.Secure.DISABLED_PRINT_SERVICES + " "
327 SystemUtil.runShellCommand(instrumentation, "settings put secure "
328 + Settings.Secure.DISABLED_PRINT_SERVICES + " null");
    [all...]
  /frameworks/base/media/java/android/media/
RingtoneManager.java 790 Settings.Secure.putIntForUser(userContext.getContentResolver(),
791 Settings.Secure.SYNC_PARENT_SOUNDS, 1 /* true */, userContext.getUserId());
838 if (Settings.Secure.getIntForUser(resolver, Settings.Secure.SYNC_PARENT_SOUNDS, 0,
    [all...]
  /frameworks/base/services/core/java/com/android/server/vr/
EnabledComponentsObserver.java 288 String settingValue = Settings.Secure.getStringForUser(
  /frameworks/base/services/tests/servicestests/src/com/android/server/
GestureLauncherServiceTest.java     [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
WifiPermissionsUtil.java 279 != Settings.Secure.LOCATION_MODE_OFF);

Completed in 1529 milliseconds

<<11121314151617181920>>