HomeSort by relevance Sort by last modified time
    Searched refs:getUriFor (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /packages/apps/Settings/src/com/android/settings/accessibility/
SettingsContentObserver.java 31 contentResolver.registerContentObserver(Settings.Secure.getUriFor(
33 contentResolver.registerContentObserver(Settings.Secure.getUriFor(
  /frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
FakeSettingsProvider.java 65 * 3. Calling ContentResolver#notifyChange(getUriFor(table, arg), ...) on every settings change.
81 private Uri getUriFor(String table, String key) {
84 return Settings.System.getUriFor(key);
86 return Settings.Secure.getUriFor(key);
88 return Settings.Global.getUriFor(key);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
SettingsObserver.java 48 Settings.Secure.getUriFor(mKeySetting), false, this);
51 Settings.Secure.getUriFor(setting), false, this);
81 Settings.System.getUriFor(mKeySetting), false, this);
84 Settings.System.getUriFor(setting), false, this);
  /packages/services/Car/car-lib/src/android/car/settings/
GarageModeSettingsObserver.java 34 Settings.Global.getUriFor(CarSettings.Global.KEY_GARAGE_MODE_ENABLED);
36 Settings.Global.getUriFor(CarSettings.Global.KEY_GARAGE_MODE_WAKE_UP_TIME);
38 Settings.Global.getUriFor(CarSettings.Global.KEY_GARAGE_MODE_MAINTENANCE_WINDOW);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/display/
BrightnessLevelPreferenceControllerTest.java 92 System.getUriFor(System.SCREEN_BRIGHTNESS_MODE))).isNotEmpty();
94 System.getUriFor(System.SCREEN_BRIGHTNESS))).isNotEmpty();
96 System.getUriFor(System.SCREEN_BRIGHTNESS_FOR_VR))).isNotEmpty();
98 System.getUriFor(System.SCREEN_AUTO_BRIGHTNESS_ADJ))).isNotEmpty();
114 System.getUriFor(System.SCREEN_BRIGHTNESS_MODE))).isEmpty();
116 System.getUriFor(System.SCREEN_BRIGHTNESS))).isEmpty();
118 System.getUriFor(System.SCREEN_BRIGHTNESS_FOR_VR))).isEmpty();
120 System.getUriFor(System.SCREEN_AUTO_BRIGHTNESS_ADJ))).isEmpty();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
GlobalSetting.java 51 Global.getUriFor(mSettingName), false, this);
SecureSetting.java 62 Secure.getUriFor(mSettingName), false, this, mUserId);
  /packages/apps/Settings/src/com/android/settings/display/
BrightnessLevelPreferenceController.java 61 BRIGHTNESS_MODE_URI = System.getUriFor(System.SCREEN_BRIGHTNESS_MODE);
62 BRIGHTNESS_URI = System.getUriFor(System.SCREEN_BRIGHTNESS);
63 BRIGHTNESS_FOR_VR_URI = System.getUriFor(System.SCREEN_BRIGHTNESS_FOR_VR);
64 BRIGHTNESS_ADJ_URI = System.getUriFor(System.SCREEN_AUTO_BRIGHTNESS_ADJ);
  /packages/apps/Settings/src/com/android/settings/notification/
SettingPref.java 53 mUri = getUriFor(mType, mSetting);
128 private static Uri getUriFor(int type, String setting) {
131 return Global.getUriFor(setting);
133 return System.getUriFor(setting);
ZenModeSettingsBase.java 145 private final Uri ZEN_MODE_URI = Global.getUriFor(Global.ZEN_MODE);
146 private final Uri ZEN_MODE_CONFIG_ETAG_URI = Global.getUriFor(Global.ZEN_MODE_CONFIG_ETAG);
  /frameworks/base/core/java/com/android/internal/util/
NotificationMessagingUtil.java 47 Settings.Secure.getUriFor(DEFAULT_SMS_APP_SETTING), false, mSmsContentObserver);
70 if (Settings.Secure.getUriFor(DEFAULT_SMS_APP_SETTING).equals(uri)) {
  /frameworks/base/services/core/java/com/android/server/am/
CoreSettingsObserver.java 92 Uri uri = Settings.Secure.getUriFor(setting);
98 Uri uri = Settings.System.getUriFor(setting);
104 Uri uri = Settings.Global.getUriFor(setting);
  /frameworks/base/core/java/com/android/internal/app/
NightDisplayController.java 437 cr.registerContentObserver(Secure.getUriFor(Secure.NIGHT_DISPLAY_ACTIVATED),
439 cr.registerContentObserver(Secure.getUriFor(Secure.NIGHT_DISPLAY_AUTO_MODE),
441 cr.registerContentObserver(Secure.getUriFor(Secure.NIGHT_DISPLAY_CUSTOM_START_TIME),
443 cr.registerContentObserver(Secure.getUriFor(Secure.NIGHT_DISPLAY_CUSTOM_END_TIME),
445 cr.registerContentObserver(Secure.getUriFor(Secure.NIGHT_DISPLAY_COLOR_TEMPERATURE),
447 cr.registerContentObserver(System.getUriFor(System.DISPLAY_COLOR_MODE),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DeviceProvisionedControllerImpl.java 43 mDeviceProvisionedUri = Global.getUriFor(Global.DEVICE_PROVISIONED);
44 mUserSetupUri = Secure.getUriFor(Secure.USER_SETUP_COMPLETE);
  /frameworks/base/services/core/java/com/android/server/
CertBlacklister.java 130 Settings.Secure.getUriFor(PUBKEY_BLACKLIST_KEY),
137 Settings.Secure.getUriFor(SERIAL_BLACKLIST_KEY),
  /cts/tests/autofillservice/src/android/autofillservice/cts/
OneTimeSettingsListener.java 26 mResolver.registerContentObserver(Settings.Secure.getUriFor(key), false, this);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
HapticFeedbackController.java 48 Uri uri = Settings.System.getUriFor(Settings.System.HAPTIC_FEEDBACK_ENABLED);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileObserver.java 30 Settings.Global.getUriFor(Settings.Global.BLUETOOTH_DISABLED_PROFILES), false,
  /packages/apps/Settings/src/com/android/settings/applications/assist/
AssistSettingObserver.java 30 Settings.Secure.getUriFor(Settings.Secure.ASSISTANT);
AssistFlashScreenPreferenceController.java 144 Settings.Secure.getUriFor(Settings.Secure.ASSIST_DISCLOSURE_ENABLED);
146 Settings.Secure.getUriFor(Settings.Secure.ASSIST_STRUCTURE_ENABLED);
AssistScreenshotPreferenceController.java 123 Settings.Secure.getUriFor(Settings.Secure.ASSIST_SCREENSHOT_ENABLED);
125 Settings.Secure.getUriFor(Settings.Secure.ASSIST_STRUCTURE_ENABLED);
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 168 context.getContentResolver().registerContentObserver(Settings.System.getUriFor(
171 context.getContentResolver().registerContentObserver(Settings.System.getUriFor(
  /frameworks/base/services/net/java/android/net/util/
MultinetworkPolicyTracker.java 87 Settings.Global.getUriFor(NETWORK_AVOID_BAD_WIFI),
88 Settings.Global.getUriFor(NETWORK_METERED_MULTIPATH_PREFERENCE));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
SettingPrefControllerTest.java 109 Global.getUriFor("Setting1"), false, mController.getObserver());
124 mController.getObserver().onChange(false, Global.getUriFor("Setting1"));
  /frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
ProvisionObserver.java 107 Settings.Global.getUriFor(Settings.Global.DEVICE_PROVISIONED), 0))

Completed in 513 milliseconds

1 2 3 4 5 6 7