Home
last modified time | relevance | path

Searched refs:keyValues (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/time/shell_utils/common/android/app/time/cts/shell/
DDeviceConfigShellHelper.java98 Map<String, String> keyValues = new HashMap(); in list() local
105 keyValues.put(key, value); in list()
108 return new NamespaceEntries(namespace, keyValues); in list()
156 Maps.difference(oldEntries.keyValues, currentEntries.keyValues); in restoreDeviceConfigStateForTest()
160 subMap(oldEntries.keyValues, difference.entriesDiffering().keySet()); in restoreDeviceConfigStateForTest()
166 private static <X, Y> Map<X, Y> subMap(Map<X, Y> keyValues, Set<X> keySet) { in subMap() argument
167 return Maps.filterKeys(keyValues, keySet::contains); in subMap()
195 public final Map<String, String> keyValues = new HashMap<>(); field in DeviceConfigShellHelper.NamespaceEntries
197 public NamespaceEntries(String namespace, Map<String, String> keyValues) { in NamespaceEntries() argument
199 this.keyValues.putAll(Objects.requireNonNull(keyValues)); in NamespaceEntries()
/cts/tests/app/ShortFgsTest/src/android/app/cts/shortfgstest/
DActivityManagerShortFgsTimeoutTest.java113 final var keyValues = extractShortFgsSettings(); in testDefaultTimeouts() local
115 assertConfigAtLeast(keyValues, "short_fgs_timeout_duration", 3 * 60_000); in testDefaultTimeouts()
116 assertConfigAtLeast(keyValues, "short_fgs_proc_state_extra_wait_duration", 5_000); in testDefaultTimeouts()
117 assertConfigAtLeast(keyValues, "short_fgs_anr_extra_wait_duration", 10_000); in testDefaultTimeouts()
/cts/tests/app/FgsTimeoutTest/src/android/app/cts/fgstimeouttest/
DFgsTimeoutConfigsTest.java73 final Map<String, Long> keyValues = extractFgsTimeoutSettings( in testDefaultTimeouts() local
78 assertConfigAtLeast(keyValues, "fgs_crash_extra_wait_duration", 10_000); in testDefaultTimeouts()
79 assertConfigAtLeast(keyValues, in testDefaultTimeouts()
81 assertConfigAtLeast(keyValues, in testDefaultTimeouts()
/cts/hostsidetests/blobstore/src/com/android/cts/host/blob/
DBaseBlobStoreHostTest.java145 protected Map<String, String> createArgs(Pair<String, String>... keyValues) { in createArgs() argument
146 return Arrays.stream(keyValues).collect(Collectors.toMap(p -> p.first, p -> p.second)); in createArgs()
/cts/tests/BlobStore/src/com/android/cts/blob/
DBlobStoreManagerTest.java1707 Pair<String, String>... keyValues) throws Exception { in runWithKeyValues() argument
1710 for (Pair<String, String> pair : keyValues) { in runWithKeyValues()