Home
last modified time | relevance | path

Searched refs:CALL_METHOD_DELETE_CONFIG (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/core/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java368 r.call(DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, name, null); in testCall_putAndGetConfig()
390 results = r.call(DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, name, in testCall_deleteConfig()
398 r.call(DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, name, null); in testCall_deleteConfig()
437 r.call(DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, name, null); in testCall_listConfig()
438 r.call(DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, newName, null); in testCall_listConfig()
H A DDeviceConfigTest.java825 DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, compositeName, null); in deleteViaContentProvider()
/aosp12/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DDeviceConfigServiceTest.java199 DeviceConfig.CONTENT_URI, Settings.CALL_METHOD_DELETE_CONFIG, compositeName, null); in deleteFromContentProvider()
/aosp12/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDeviceConfigService.java312 Settings.CALL_METHOD_DELETE_CONFIG, compositeKey, args); in delete()
H A DSettingsProvider.java509 case Settings.CALL_METHOD_DELETE_CONFIG: { in call()
/aosp12/frameworks/base/core/java/android/provider/
H A DSettings.java2465 public static final String CALL_METHOD_DELETE_CONFIG = "DELETE_config"; field in Settings