Home
last modified time | relevance | path

Searched refs:namespace (Results 1 – 25 of 1913) sorted by relevance

12345678910>>...77

/packages/apps/Launcher3/aconfig/
Dlauncher.aconfig6 namespace: "launcher"
13 namespace: "launcher"
20 namespace: "launcher"
27 namespace: "launcher"
34 namespace: "launcher"
41 namespace: "launcher"
48 namespace: "launcher"
55 namespace: "launcher"
62 namespace: "launcher"
69 namespace: "launcher"
[all …]
/packages/providers/MediaProvider/photopicker/tests/src/com/android/photopicker/core/configuration/
DTestDeviceConfigProxyImpl.kt41 namespace: String, in addOnPropertiesChangedListener()
45 if (!observers.contains(namespace)) { in addOnPropertiesChangedListener()
46 observers.put(namespace, mutableListOf()) in addOnPropertiesChangedListener()
48 observers.get(namespace)?.add(listener) in addOnPropertiesChangedListener()
67 override fun <T> getFlag(namespace: String, key: String, defaultValue: T): T { in getFlag()
68 val rawValue: String? = flagStore.get(namespace)?.get(key) in getFlag()
104 fun setFlag(namespace: String, key: String, value: String): TestDeviceConfigProxyImpl { in setFlag()
105 ensureNamespace(namespace) in setFlag()
106 flagStore.get(namespace)?.put(key, value) in setFlag()
107 notifyKeyChanged(namespace, key, value) in setFlag()
[all …]
/packages/modules/Bluetooth/flags/
Dleaudio.aconfig7 namespace: "bluetooth"
15 namespace: "bluetooth"
22 namespace: "bluetooth"
29 namespace: "bluetooth"
36 namespace: "bluetooth"
43 namespace: "bluetooth"
50 namespace: "bluetooth"
57 namespace: "bluetooth"
64 namespace: "bluetooth"
71 namespace: "bluetooth"
[all …]
Dgap.aconfig6 namespace: "bluetooth"
13 namespace: "bluetooth"
20 namespace: "bluetooth"
27 namespace: "bluetooth"
34 namespace: "bluetooth"
41 namespace: "bluetooth"
49 namespace: "bluetooth"
56 namespace: "bluetooth"
63 namespace: "bluetooth"
70 namespace: "bluetooth"
[all …]
Dhfp.aconfig6 namespace: "bluetooth"
13 namespace: "bluetooth"
20 namespace: "bluetooth"
27 namespace: "bluetooth"
34 namespace: "bluetooth"
41 namespace: "bluetooth"
48 namespace: "bluetooth"
55 namespace: "bluetooth"
62 namespace: "bluetooth"
72 namespace: "bluetooth"
[all …]
Da2dp.aconfig7 namespace: "bluetooth"
14 namespace: "bluetooth"
21 namespace: "bluetooth"
31 namespace: "bluetooth"
41 namespace: "bluetooth"
51 namespace: "bluetooth"
61 namespace: "bluetooth"
71 namespace: "bluetooth"
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/
DPhotoPickerCloudTestUtils.java50 static boolean isCloudMediaEnabled(@NonNull String namespace) { in isCloudMediaEnabled() argument
52 readDeviceConfigProp(namespace, KEY_CLOUD_MEDIA_FEATURE_ENABLED)); in isCloudMediaEnabled()
59 static String getAllowedProvidersDeviceConfig(@NonNull String namespace) { in getAllowedProvidersDeviceConfig() argument
60 return readDeviceConfigProp(namespace, KEY_CLOUD_MEDIA_PROVIDER_ALLOWLIST); in getAllowedProvidersDeviceConfig()
67 @NonNull String namespace, @NonNull String allowedPackagesJoined) { in enableCloudMediaAndSetAllowedCloudProviders()
68 writeDeviceConfigProp(namespace, KEY_CLOUD_MEDIA_PROVIDER_ALLOWLIST, allowedPackagesJoined); in enableCloudMediaAndSetAllowedCloudProviders()
70 .that(getAllowedProvidersDeviceConfig(namespace)) in enableCloudMediaAndSetAllowedCloudProviders()
73 writeDeviceConfigProp(namespace, KEY_CLOUD_MEDIA_FEATURE_ENABLED, true); in enableCloudMediaAndSetAllowedCloudProviders()
75 .that(isCloudMediaEnabled(namespace)) in enableCloudMediaAndSetAllowedCloudProviders()
82 static void disableCloudMediaAndClearAllowedCloudProviders(@NonNull String namespace) { in disableCloudMediaAndClearAllowedCloudProviders() argument
[all …]
/packages/modules/ConfigInfrastructure/framework/java/android/provider/
DDeviceConfig.java1066 void onDeviceConfigAccess(@NonNull String callingPackage, @NonNull String namespace); in onDeviceConfigAccess() argument
1083 public static String getProperty(@NonNull String namespace, @NonNull String name) { in getProperty() argument
1087 return getProperties(namespace, name).getString(name, null); in getProperty()
1114 public static Properties getProperties(@NonNull String namespace, @NonNull String... names) { in getProperties() argument
1115 Properties properties = getPropertiesWithoutOverrides(namespace, names); in getProperties()
1123 private static Properties getPropertiesWithoutOverrides(@NonNull String namespace, in getPropertiesWithoutOverrides() argument
1125 return sDataStore.getProperties(namespace, names); in getPropertiesWithoutOverrides()
1158 String namespace = namespaceAndFlag[0]; in getAllProperties() local
1161 getProperty(DEVICE_CONFIG_OVERRIDES_NAMESPACE, namespace + ":" + flagName); in getAllProperties()
1165 if (!propertyMaps.containsKey(namespace)) { in getAllProperties()
[all …]
DDeviceConfigServiceDataStore.java76 public DeviceConfig.Properties getProperties(@NonNull String namespace, in getProperties() argument
82 Slog.d(TAG, "ServiceDS - getProperties before ready " + namespace + " " in getProperties()
85 return new DeviceConfig.Properties(namespace, new HashMap<>()); in getProperties()
87 return mManager.getProperties(namespace, names); in getProperties()
104 public boolean setProperty(@NonNull String namespace, @NonNull String name, in setProperty() argument
109 Slog.d(TAG, "ServiceDS - setProperty before ready " + namespace + " " + name); in setProperty()
113 return mManager.setProperty(namespace, name, value, makeDefault); in setProperty()
117 public boolean deleteProperty(@NonNull String namespace, @NonNull String name) { in deleteProperty() argument
121 Slog.d(TAG, "ServiceDS - setProperty before ready " + namespace + " " + name); in deleteProperty()
125 return mManager.deleteProperty(namespace, name); in deleteProperty()
[all …]
DSettingsConfigDataStore.java45 public @NonNull DeviceConfig.Properties getProperties(@NonNull String namespace, in getProperties() argument
47 return new DeviceConfig.Properties(namespace, in getProperties()
48 Settings.Config.getStrings(namespace, Arrays.asList(names))); in getProperties()
59 public boolean setProperty(@NonNull String namespace, @NonNull String name, in setProperty() argument
61 return Settings.Config.putString(namespace, name, value, makeDefault); in setProperty()
65 public boolean deleteProperty(@NonNull String namespace, @NonNull String name) { in deleteProperty() argument
66 return Settings.Config.deleteString(namespace, name); in deleteProperty()
70 public void resetToDefaults(int resetMode, @Nullable String namespace) { in resetToDefaults() argument
71 Settings.Config.resetToDefaults(resetMode, namespace); in resetToDefaults()
96 public void registerContentObserver(@NonNull String namespace, boolean notifyForescendants, in registerContentObserver() argument
[all …]
DDeviceConfigManager.java42 public DeviceConfig.Properties getProperties(@NonNull String namespace, in getProperties() argument
45 Map<String, String> map = mService.getProperties(namespace, names); in getProperties()
46 return new DeviceConfig.Properties(namespace, map); in getProperties()
52 public boolean setProperties(@NonNull String namespace, @NonNull Map<String, String> values) { in setProperties() argument
54 return mService.setProperties(namespace, values); in setProperties()
60 public boolean setProperty(@NonNull String namespace, @NonNull String name, in setProperty() argument
63 return mService.setProperty(namespace, name, value, makeDefault); in setProperty()
69 public boolean deleteProperty(@NonNull String namespace, @NonNull String name) { in deleteProperty() argument
71 return mService.deleteProperty(namespace, name); in deleteProperty()
/packages/services/Car/aconfig/
Dflags.aconfig8 namespace: "car_framework"
17 namespace: "car_framework"
26 namespace: "car_framework"
35 namespace: "car_framework"
43 namespace: "car_framework"
50 namespace: "car_framework"
61 namespace: "car_framework"
68 namespace: "car_framework"
77 namespace: "car_framework"
85 namespace: "car_framework"
[all …]
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DPersonBuilderHelperTest.java38 String namespace = "namespace"; in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded() local
53 ContactPoint contact1 = new ContactPoint.Builder(namespace, id + "1", "Home") in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
59 ContactPoint contact2 = new ContactPoint.Builder(namespace, id + "2", "Work") in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
65 Person.Builder personBuilder = new Person.Builder(namespace, id, name) in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
111 String namespace = "namespace"; in testFingerprintGeneration_forEachPropertyType_string() local
117 Person.Builder personBuilder = new Person.Builder(namespace, id, name) in testFingerprintGeneration_forEachPropertyType_string()
141 String namespace = "namespace"; in testFingerprintGeneration_forEachPropertyType_boolean() local
144 Person.Builder personBuilder = new Person.Builder(namespace, id, name) in testFingerprintGeneration_forEachPropertyType_boolean()
159 String namespace = "namespace"; in testFingerprintGeneration_forEachPropertyType_stringArray() local
164 Person.Builder personBuilder = new Person.Builder(namespace, id, name) in testFingerprintGeneration_forEachPropertyType_stringArray()
[all …]
/packages/modules/AppSearch/flags/
Dappsearch.aconfig11 namespace: "appsearch"
20 namespace: "appsearch"
29 namespace: "appsearch"
38 namespace: "appsearch"
47 namespace: "appsearch"
56 namespace: "appsearch"
65 namespace: "appsearch"
74 namespace: "appsearch"
83 namespace: "appsearch"
92 namespace: "appsearch"
[all …]
/packages/modules/AdServices/adservices/flags/
Dadservices_flags.aconfig8 namespace: "adservices"
16 namespace: "adservices"
24 namespace: "adservices"
32 namespace: "adservices"
40 namespace: "adservices"
48 namespace: "adservices"
55 namespace: "adservices"
62 namespace: "adservices"
69 namespace: "adservices"
76 namespace: "adservices"
[all …]
/packages/modules/Connectivity/common/
Dflags.aconfig10 namespace: "android_core_networking"
18 namespace: "android_core_networking"
26 namespace: "android_core_networking"
34 namespace: "android_core_networking_ipsec"
42 namespace: "android_core_networking"
50 namespace: "android_core_networking"
58 namespace: "android_core_networking"
66 namespace: "android_core_networking"
74 namespace: "android_core_networking"
82 namespace: "android_core_networking"
[all …]
/packages/modules/ConfigInfrastructure/service/java/com/android/server/deviceconfig/db/
DDeviceConfigDbAdapter.java40 public Map<String, String> getValuesForNamespace(String namespace, String... keys) { in getValuesForNamespace() argument
53 selectionArgs = new String[]{namespace, keySelection}; in getValuesForNamespace()
56 selectionArgs = new String[]{namespace}; in getValuesForNamespace()
84 private boolean insertOrUpdateValue_inTransaction(String namespace, String key, String value) { in insertOrUpdateValue_inTransaction() argument
87 values.put(DeviceConfigEntry.COLUMN_NAME_NAMESPACE, namespace); in insertOrUpdateValue_inTransaction()
94 String[] whereArgs = {namespace, key}; in insertOrUpdateValue_inTransaction()
109 public boolean setValues(String namespace, Map<String, String> map) { in setValues() argument
118 allSucceeded &= insertOrUpdateValue_inTransaction(namespace, entry.getKey(), in setValues()
132 public boolean setValue(String namespace, String key, String value, boolean makeDefault) { in setValue() argument
135 return setValues(namespace, map); in setValue()
[all …]
/packages/services/Telecomm/flags/
Dtelecom_callaudioroutestatemachine_flags.aconfig7 namespace: "telecom"
15 namespace: "telecom"
23 namespace: "telecom"
31 namespace: "telecom"
39 namespace: "telecom"
47 namespace: "telecom"
55 namespace: "telecom"
63 namespace: "telecom"
71 namespace: "telecom"
79 namespace: "telecom"
[all …]
/packages/apps/Camera2/src/com/android/camera/module/
DModulesInfo.java78 final String namespace, final boolean enableCaptureModule) { in registerPhotoModule() argument
97 return namespace; in registerPhotoModule()
109 final String namespace) { in registerVideoModule() argument
123 return namespace; in registerVideoModule()
134 final String namespace) { in registerWideAngleModule() argument
148 return namespace; in registerWideAngleModule()
159 final String namespace) { in registerPhotoSphereModule() argument
173 return namespace; in registerPhotoSphereModule()
184 final String namespace) { in registerRefocusModule() argument
198 return namespace; in registerRefocusModule()
[all …]
/packages/modules/Wifi/flags/
Dwifi_flags.aconfig6 namespace: "wifi"
13 namespace: "wifi"
20 namespace: "wifi"
28 namespace: "wifi"
36 namespace: "wifi"
43 namespace: "wifi"
51 namespace: "wifi"
59 namespace: "wifi"
67 namespace: "wifi"
75 namespace: "wifi"
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/utils/
DIkeDeviceConfigUtils.java34 @NonNull String namespace, @NonNull String name, int defaultValue) { in getDeviceConfigPropertyInt()
35 String value = getDeviceConfigProperty(namespace, name, null /* defaultValue */); in getDeviceConfigPropertyInt()
59 @NonNull String namespace, in getDeviceConfigPropertyInt()
64 int value = getDeviceConfigPropertyInt(namespace, name, defaultValue); in getDeviceConfigPropertyInt()
77 @NonNull String namespace, @NonNull String name, boolean defaultValue) { in getDeviceConfigPropertyBoolean()
78 String value = getDeviceConfigProperty(namespace, name, null /* defaultValue */); in getDeviceConfigPropertyBoolean()
92 @NonNull String namespace, @NonNull String name, @Nullable String defaultValue) { in getDeviceConfigProperty()
93 String value = DeviceConfig.getProperty(namespace, name); in getDeviceConfigProperty()
/packages/modules/Bluetooth/system/gd/docs/testing/
Dgtest.md139 namespace bluetooth {
140 namespace l2cap {
141 namespace classic {
142 namespace internal {
165 } // namespace internal
166 } // namespace classic
167 } // namespace l2cap
168 } // namespace bluetooth
185 namespace bluetooth {
186 namespace l2cap {
[all …]
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
Dver4_patricia_trie_node_reader.h31 namespace latinime {
32 namespace backward {
33 namespace v402 {
38 namespace backward {
39 namespace v402 {
43 namespace backward {
44 namespace v402 {
/packages/modules/AdServices/sdksandbox/flags/
Dsandbox_flags.aconfig6 namespace: "sdk_sandbox"
13 namespace: "sdk_sandbox"
20 namespace: "sdk_sandbox"
27 namespace: "sdk_sandbox"
37 namespace: "sdk_sandbox"
44 namespace: "sdk_sandbox"
51 namespace: "sdk_sandbox"
58 namespace: "sdk_sandbox"
65 namespace: "sdk_sandbox"
/packages/modules/Uwb/flags/
Duwb_flags.aconfig7 namespace: "uwb"
15 namespace: "uwb"
22 namespace: "uwb"
30 namespace: "uwb"
37 namespace: "uwb"
44 namespace: "uwb"
51 namespace: "uwb"
59 namespace: "uwb"
67 namespace: "uwb"

12345678910>>...77