Home
last modified time | relevance | path

Searched full:configmap (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/
DBaseTestSuiteTest.java286 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests() local
287 assertEquals(4, configMap.size()); in testLoadTests()
288 assertTrue(configMap.containsKey("arm64-v8a suite/stub1")); in testLoadTests()
289 assertTrue(configMap.containsKey("arm64-v8a suite/stub2")); in testLoadTests()
290 assertTrue(configMap.containsKey("armeabi-v7a suite/stub1")); in testLoadTests()
291 assertTrue(configMap.containsKey("armeabi-v7a suite/stub2")); in testLoadTests()
303 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_suite2() local
304 assertEquals(2, configMap.size()); in testLoadTests_suite2()
305 assertTrue(configMap.containsKey("arm64-v8a suite/stub1")); in testLoadTests_suite2()
306 assertTrue(configMap.containsKey("armeabi-v7a suite/stub1")); in testLoadTests_suite2()
[all …]
DAtestRunnerTest.java125 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_one() local
126 assertEquals(1, configMap.size()); in testLoadTests_one()
127 assertTrue(configMap.containsKey(String.format(TEST_NAME_FMT, "tf/fake"))); in testLoadTests_one()
136 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_two() local
137 assertEquals(2, configMap.size()); in testLoadTests_two()
138 assertTrue(configMap.containsKey(String.format(TEST_NAME_FMT, "tf/fake"))); in testLoadTests_two()
139 assertTrue(configMap.containsKey(String.format(TEST_NAME_FMT, "tf/func"))); in testLoadTests_two()
149 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_filter() local
150 assertEquals(1, configMap.size()); in testLoadTests_filter()
152 assertTrue(configMap.containsKey(testName)); in testLoadTests_filter()
[all …]
DTfSuiteRunnerTest.java121 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests() local
122 assertEquals(4, configMap.size()); in testLoadTests()
123 assertTrue(configMap.containsKey("arm64-v8a suite/stub1")); in testLoadTests()
124 assertTrue(configMap.containsKey("armeabi-v7a suite/stub1")); in testLoadTests()
125 assertTrue(configMap.containsKey("arm64-v8a suite/stub2")); in testLoadTests()
126 assertTrue(configMap.containsKey("armeabi-v7a suite/stub2")); in testLoadTests()
138 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_suite2() local
139 assertEquals(2, configMap.size()); in testLoadTests_suite2()
140 assertTrue(configMap.containsKey("arm64-v8a suite/stub1")); in testLoadTests_suite2()
141 assertTrue(configMap.containsKey("armeabi-v7a suite/stub1")); in testLoadTests_suite2()
[all …]
DTestMappingSuiteRunnerTest.java248 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTestsWhenRemoteTestTimeoutIsSet() local
250 for (IConfiguration config : configMap.values()) { in testLoadTestsWhenRemoteTestTimeoutIsSet()
342 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_testMappingsZip() local
344 assertEquals(4, configMap.size()); in testLoadTests_testMappingsZip()
345 assertTrue(configMap.containsKey(ABI_1 + " suite/stub1")); in testLoadTests_testMappingsZip()
346 assertTrue(configMap.containsKey(ABI_1 + " suite/stub2")); in testLoadTests_testMappingsZip()
347 assertTrue(configMap.containsKey(ABI_2 + " suite/stub1")); in testLoadTests_testMappingsZip()
348 assertTrue(configMap.containsKey(ABI_2 + " suite/stub2")); in testLoadTests_testMappingsZip()
355 for (IConfiguration config : configMap.values()) { in testLoadTests_testMappingsZip()
407 LinkedHashMap<String, IConfiguration> configMap = mRunner.loadTests(); in testLoadTests_testMappingsZipFoundTestsWithKeywords() local
[all …]
/aosp_15_r20/external/coreboot/util/intelp2m/fields/fsp/
H A Dfsp.go8 // configmap : map to select the current configuration
9 // value : the key value in the configmap
12 configmap map[uint8]string member
24 field.override(field.configmap, field.value)
28 fieldmacro, valid := field.configmap[field.value]
49 configmap : map[uint8]string{
61 configmap : map[uint8]string {
69 configmap : map[uint8]string {
81 configmap : map[uint8]string {
89 configmap : map[uint8]string {
[all …]
/aosp_15_r20/system/nfc/src/adaptation/
H A DNfcAdaptation.cc336 std::map<std::string, ConfigValue>& configMap) { in GetVendorConfigs() argument
363 configMap.emplace(NAME_NFA_PROPRIETARY_CFG, ConfigValue(nfaPropCfg)); in GetVendorConfigs()
364 configMap.emplace(NAME_NFA_POLL_BAIL_OUT_MODE, in GetVendorConfigs()
367 configMap.emplace(NAME_OFFHOST_ROUTE_UICC, in GetVendorConfigs()
371 configMap.emplace(NAME_OFFHOST_ROUTE_ESE, in GetVendorConfigs()
376 configMap.emplace( in GetVendorConfigs()
379 configMap.emplace(NAME_DEFAULT_ROUTE, in GetVendorConfigs()
381 configMap.emplace( in GetVendorConfigs()
384 configMap.emplace(NAME_DEFAULT_ISODEP_ROUTE, in GetVendorConfigs()
386 configMap.emplace( in GetVendorConfigs()
[all …]
/aosp_15_r20/test/suite_harness/common/host-side/util/tests/src/com/android/compatibility/common/util/
H A DDynamicConfigHandlerTest.java107 Map<String, List<String>> configMap = DynamicConfig.createConfigMap(mergedFile); in testDynamicConfigHandler() local
109 assertEquals("OverrideConfig-val-1", configMap.get("override-config-1").get(0)); in testDynamicConfigHandler()
111 configMap in testDynamicConfigHandler()
115 configMap in testDynamicConfigHandler()
118 assertTrue(configMap.get("override-config-list-3").size() == 0); in testDynamicConfigHandler()
120 assertEquals("test config 1", configMap.get("test-config-1").get(0)); in testDynamicConfigHandler()
121 assertTrue(configMap.get("config-list").contains("config2")); in testDynamicConfigHandler()
123 assertEquals("OverrideConfig-val-2", configMap.get("override-config-2").get(0)); in testDynamicConfigHandler()
124 assertEquals(1, configMap.get("override-config-list-2").size()); in testDynamicConfigHandler()
126 configMap in testDynamicConfigHandler()
/aosp_15_r20/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
H A DFelixHost.java62 StringMap configMap = new StringMap(); in doLaunch() local
64 // configMap.put(FelixConstants.EMBEDDED_EXECUTION_PROP, "true"); in doLaunch()
67configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES, "org.osgi.framework; version=1.3.0," + "org.osgi… in doLaunch()
70configMap.put(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT); in doLaunch()
73 // configMap.put(BundleCache.CACHE_PROFILE_DIR_PROP, "cache"); in doLaunch()
81configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, "org.xml.sax, org.xml.sax.helpers, javax.x… in doLaunch()
82 configMap.put(FelixConstants.SYSTEMBUNDLE_ACTIVATORS_PROP, list); in doLaunch()
83 configMap.put("felix.log.level", "4"); in doLaunch()
87 felix = new Felix(configMap); in doLaunch()
/aosp_15_r20/frameworks/base/core/java/android/content/pm/
H A DConstrainDisplayApisConfig.java147 ArrayMap<String, Pair<Long, Long>> configMap = new ArrayMap<>(); in buildConfigMap() local
150 return configMap; in buildConfigMap()
171 configMap.put(packageName, minMaxVersionCodes); in buildConfigMap()
177 return configMap; in buildConfigMap()
184 * @param configMap the map representing the current configuration value to examine
187 private static boolean flagHasMatchingPackageEntry(Map<String, Pair<Long, Long>> configMap, in flagHasMatchingPackageEntry() argument
189 if (configMap.isEmpty()) { in flagHasMatchingPackageEntry()
192 if (!configMap.containsKey(applicationInfo.packageName)) { in flagHasMatchingPackageEntry()
195 return matchesApplicationInfo(configMap.get(applicationInfo.packageName), applicationInfo); in flagHasMatchingPackageEntry()
/aosp_15_r20/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
H A DDynamicConfigHandler.java89 Map<String, List<String>> configMap = new HashMap<String, List<String>>(); in parseJsonToConfigMap() local
91 return configMap; in parseJsonToConfigMap()
100 return configMap; in parseJsonToConfigMap()
110 configMap.put(key, values); in parseJsonToConfigMap()
112 return configMap; in parseJsonToConfigMap()
115 private static File storeMergedConfigFile(Map<String, List<String>> configMap, in storeMergedConfigFile() argument
126 for (String key : configMap.keySet()) { in storeMergedConfigFile()
129 for (String value : configMap.get(key)) { in storeMergedConfigFile()
/aosp_15_r20/tools/carrier_settings/java/
H A DCarrierConfigConverterV2.java584 HashMap<String, CarrierConfig.Config> configMap = new HashMap<>(); in parseCarrierConfigFromXml() local
589 configMap.putAll(parseCarrierConfigToMap(element)); in parseCarrierConfigFromXml()
591 return configMap; in parseCarrierConfigFromXml()
602 HashMap<String, CarrierConfig.Config> configMap = new HashMap<>(); in parseCarrierConfigFromVendorXml() local
610 configMap.putAll(parseCarrierConfigToMap(parent_config)); in parseCarrierConfigFromVendorXml()
613 configMap.putAll(parseCarrierConfigToMap(element)); in parseCarrierConfigFromVendorXml()
615 return configMap; in parseCarrierConfigFromVendorXml()
626 HashMap<String, CarrierConfig.Config> configMap = new HashMap<>(); in parseCarrierConfigToMap() local
639 configMap.put(key, CarrierConfig.Config.newBuilder().setBoolValue(value).build()); in parseCarrierConfigToMap()
652 configMap.put(key, CarrierConfig.Config.newBuilder().setIntValue(value).build()); in parseCarrierConfigToMap()
[all …]
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DTfSuiteRunner.java91 LinkedHashMap <String, IConfiguration> configMap = in loadTests() local
182 configMap.putAll(expandedConfig); in loadTests()
187 configMap.putAll(expandedConfig); in loadTests()
195 return configMap; in loadTests()
228 LinkedHashMap<String, IConfiguration> configMap = in expandTestSuites() local
251 configMap.putAll(subConfigs); in expandTestSuites()
262 configMap.put(sanitizeConfigName(configName), config); in expandTestSuites()
264 return configMap; in expandTestSuites()
/aosp_15_r20/external/kotlinx.serialization/formats/hocon/src/main/kotlin/kotlinx/serialization/hocon/
H A DHoconEncoders.kt95 private val configMap = mutableMapOf<String, ConfigValue>() constant
98 configMap[tag] = value in encodeTaggedConfigValue()
101 override fun getCurrent(): ConfigValue = ConfigValueFactory.fromMap(configMap) in getCurrent()
123 private val configMap = mutableMapOf<String, ConfigValue>() constant
136 configMap[key] = value in encodeTaggedConfigValue()
141 override fun getCurrent(): ConfigValue = ConfigValueFactory.fromMap(configMap)
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Drun_v1alpha1.projects.locations.services.html208 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
213 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
214 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
229ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
233 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
234 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
236 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
474 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
479 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
480 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.namespaces.services.html199 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
204 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
205 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
220ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
224 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
225 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
227 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
465 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
470 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
471 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.namespaces.configurations.html190 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
195 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
196 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
211ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
215 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
216 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
218 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
456 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
461 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
462 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.projects.locations.configurations.html190 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
195 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
196 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
211ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
215 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
216 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
218 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
456 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
461 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
462 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.projects.locations.revisions.html180 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
185 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
186 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
201ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
205 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
206 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
208 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
446 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
451 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
452 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.namespaces.revisions.html180 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
185 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
186 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
201ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
205 …loud Run fully managed: not supported Cloud Run for Anthos: supported The ConfigMap to select from.
206 …aged: not supported Cloud Run for Anthos: supported Specify whether the ConfigMap must be defined …
208 …;A String&quot;, # An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
446 … Selects a key from a ConfigMap. # Cloud Run fully managed: not supported Cloud Run on GKE: suppor…
451 … # Cloud Run fully managed: not supported Cloud Run on GKE: supported The ConfigMap to select from.
452 … managed: not supported Cloud Run on GKE: supported Specify whether the ConfigMap or its key must …
[all …]
Drun_v1alpha1.namespaces.jobs.html163 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
168 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
169 …&quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap or its key must be…
184ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
188 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
189 … &quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap must be defined
191 …uot;, # (Optional) An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
321 …&quot;configMap&quot;: { # Not supported by Cloud Run Adapts a ConfigMap into a volume. The conten…
460 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
465 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
[all …]
Drun_v1.namespaces.revisions.html204 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
209 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
210 …&quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap or its key must be…
225ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
229 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
230 … &quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap must be defined
232 …uot;, # (Optional) An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
361 …&quot;configMap&quot;: { # Not supported by Cloud Run Adapts a ConfigMap into a volume. The conten…
482 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
487 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
[all …]
Drun_v1.projects.locations.revisions.html204 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
209 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
210 …&quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap or its key must be…
225ConfigMap to populate the environment variables with. The contents of the target ConfigMap&#x27;s …
229 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
230 … &quot;optional&quot;: True or False, # (Optional) Specify whether the ConfigMap must be defined
232 …uot;, # (Optional) An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDE…
361 …&quot;configMap&quot;: { # Not supported by Cloud Run Adapts a ConfigMap into a volume. The conten…
482 …ed by Cloud Run Selects a key from a ConfigMap. # (Optional) Not supported by Cloud Run Selects a …
487 &quot;name&quot;: &quot;A String&quot;, # The ConfigMap to select from.
[all …]
/aosp_15_r20/system/netd/tests/
H A Dkernel_test.cpp41 const auto& configMap = mRuntimeInfo->kernelConfigs(); in hasOption() local
42 auto it = configMap.find(option); in hasOption()
43 if (it != configMap.cend()) { in hasOption()
50 const auto& configMap = mRuntimeInfo->kernelConfigs(); in hasModule() local
51 auto it = configMap.find(option); in hasModule()
52 if (it != configMap.cend()) { in hasModule()
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/one/v2/
DOneCameraCharacteristicsImpl.java61 StreamConfigurationMap configMap; in getSupportedPictureSizes() local
63 configMap = mCameraCharacteristics.get( in getSupportedPictureSizes()
72 for (android.util.Size androidSize : configMap.getOutputSizes(imageFormat)) { in getSupportedPictureSizes()
80 StreamConfigurationMap configMap; in getSupportedPreviewSizes() local
82 configMap = mCameraCharacteristics.get( in getSupportedPreviewSizes()
90 for (android.util.Size androidSize : configMap.getOutputSizes(SurfaceTexture.class)) { in getSupportedPreviewSizes()
/aosp_15_r20/packages/apps/Dialer/java/com/android/incallui/answer/impl/
DSelfManagedAnswerVideoCallScreen.java123 StreamConfigurationMap configMap = getFrontFacingCameraSizes(manager); in openCamera() local
124 if (configMap == null) { in openCamera()
128 Size previewSize = getOptimalSize(configMap.getOutputSizes(SurfaceHolder.class)); in openCamera()
171 StreamConfigurationMap configMap = in getFrontFacingCameraSizes() local
173 if (configMap == null) { in getFrontFacingCameraSizes()
178 return configMap; in getFrontFacingCameraSizes()

12345678910>>...12