Searched refs:listBatch (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/keystore/tests/src/android/security/keystore2/ |
D | AndroidKeyStoreSpiTest.java | 62 when(mKeystore2.listBatch(anyInt(), anyLong(), isNull())) in testEngineAliasesReturnsEmptySetOnKeyStoreError() 69 verify(mKeystore2).listBatch(anyInt(), anyLong(), isNull()); in testEngineAliasesReturnsEmptySetOnKeyStoreError() 74 when(mKeystore2.listBatch(anyInt(), anyLong(), anyString())) in testEngineAliasesCorrectlyListsZeroEntriesEmptyArray() 83 verify(mKeystore2).listBatch(anyInt(), anyLong(), isNull()); in testEngineAliasesCorrectlyListsZeroEntriesEmptyArray() 88 when(mKeystore2.listBatch(anyInt(), anyLong(), anyString())) in testEngineAliasesCorrectlyListsZeroEntriesNullArray() 97 verify(mKeystore2).listBatch(anyInt(), anyLong(), isNull()); in testEngineAliasesCorrectlyListsZeroEntriesNullArray() 129 when(mKeystore2.listBatch(anyInt(), anyLong(), eq(null))) in testEngineAliasesCorrectlyListsEntriesInASingleBatch() 131 when(mKeystore2.listBatch(anyInt(), anyLong(), eq("testAlias3"))) in testEngineAliasesCorrectlyListsEntriesInASingleBatch() 145 verify(mKeystore2).listBatch(anyInt(), anyLong(), eq(null)); in testEngineAliasesCorrectlyListsEntriesInASingleBatch() 146 verify(mKeystore2).listBatch(anyInt(), anyLong(), eq("testAlias3")); in testEngineAliasesCorrectlyListsEntriesInASingleBatch() [all …]
|
/frameworks/base/keystore/java/android/security/ |
D | KeyStore2.java | 183 public KeyDescriptor[] listBatch(int domain, long namespace, String startPastAlias) in listBatch() method in KeyStore2
|
/frameworks/base/keystore/java/android/security/keystore2/ |
D | AndroidKeyStoreSpi.java | 1115 return mKeyStore.listBatch( in getAliasesBatch()
|