Home
last modified time | relevance | path

Searched refs:keyList (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/serialization/
DKeyChainSnapshotSerializerTest.java273 ArrayList<WrappedApplicationKey> keyList = new ArrayList<>(); in createKeysWithoutMetadata() local
274 keyList.add(createKey(TEST_KEY_1_ALIAS, TEST_KEY_1_BYTES, /*metadata=*/ null)); in createKeysWithoutMetadata()
275 keyList.add(createKey(TEST_KEY_2_ALIAS, TEST_KEY_2_BYTES, /*metadata=*/ null)); in createKeysWithoutMetadata()
276 keyList.add(createKey(TEST_KEY_3_ALIAS, TEST_KEY_3_BYTES, /*metadata=*/ null)); in createKeysWithoutMetadata()
277 return keyList; in createKeysWithoutMetadata()
281 ArrayList<WrappedApplicationKey> keyList = new ArrayList<>(); in createKeysWithMetadata() local
282 keyList.add(createKey(TEST_KEY_1_ALIAS, TEST_KEY_1_BYTES, TEST_KEY_1_METADATA)); in createKeysWithMetadata()
283 keyList.add(createKey(TEST_KEY_2_ALIAS, TEST_KEY_2_BYTES, TEST_KEY_2_METADATA)); in createKeysWithMetadata()
284 keyList.add(createKey(TEST_KEY_3_ALIAS, TEST_KEY_3_BYTES, TEST_KEY_3_METADATA)); in createKeysWithMetadata()
285 return keyList; in createKeysWithMetadata()
/frameworks/base/core/java/android/hardware/camera2/
DCameraMetadata.java155 ArrayList<TKey> keyList = new ArrayList<TKey>(); in getKeys() local
174 keyList.add(key); in getKeys()
187 return keyList; in getKeys()
216 keyList.add(k); in getKeys()
222 return keyList; in getKeys()
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverySnapshotStorageTest.java211 ArrayList<WrappedApplicationKey> keyList = new ArrayList<>(); in createTestKeyChainSnapshot() local
212 keyList.add(createKey(TEST_KEY_1_ALIAS, TEST_KEY_1_BYTES)); in createTestKeyChainSnapshot()
213 keyList.add(createKey(TEST_KEY_2_ALIAS, TEST_KEY_2_BYTES)); in createTestKeyChainSnapshot()
214 keyList.add(createKey(TEST_KEY_3_ALIAS, TEST_KEY_3_BYTES)); in createTestKeyChainSnapshot()
224 .setWrappedApplicationKeys(keyList) in createTestKeyChainSnapshot()
/frameworks/compile/libbcc/bcinfo/tools/
Dmain.cpp234 const char **keyList = ME->getPragmaKeyList(); in dumpMetadata() local
237 printf("pragma[%zu]: %s - %s\n", i, keyList[i], valueList[i]); in dumpMetadata()