Searched refs:expectedKey (Results 1 - 3 of 3) sorted by relevance

/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DMapChangeRegistryTest.java38 final String expectedKey = "key";
45 assertEquals(key, expectedKey);
51 mapChangeRegistry.notifyChange(observableObj, expectedKey);
/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DBackupDataTest.java269 private void readAndVerifyEntity(BackupDataInput bdi, String expectedKey, byte[] expectedData) argument
272 expectedKey, bdi.getKey());
284 private void readAndVerifyDeletedEntity(BackupDataInput bdi, String expectedKey) argument
287 expectedKey, bdi.getKey());
/frameworks/base/keystore/tests/src/android/security/keystore/
H A DAndroidKeyStoreTest.java1181 PrivateKey expectedKey = keyFact.generatePrivate(new PKCS8EncodedKeySpec(key));
1194 assertPrivateKeyEntryEquals(keyEntry, expectedKey, expectedCert, expectedChain);
1197 private void assertPrivateKeyEntryEquals(PrivateKeyEntry keyEntry, PrivateKey expectedKey, argument
1199 if (expectedKey instanceof ECKey) {
1201 ((ECKey) expectedKey).getParams().getCurve(),
1203 } else if (expectedKey instanceof RSAKey) {
1205 ((RSAKey) expectedKey).getModulus(),
1263 PrivateKey expectedKey = keyFact.generatePrivate(new PKCS8EncodedKeySpec(FAKE_RSA_KEY_1));
1266 ((RSAKey) expectedKey).getModulus(), ((RSAKey) key).getModulus());
1286 PrivateKey expectedKey
[all...]

Completed in 253 milliseconds