Home
last modified time | relevance | path

Searched refs:isAvailable (Results 1 – 9 of 9) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/
Dsl4a_types.py35 isAvailable=None, argument
46 isAvailable=isAvailable,
/tools/tradefederation/core/src/com/android/tradefed/util/keystore/
DIKeyStoreClient.java29 public boolean isAvailable(); in isAvailable() method
DStubKeyStoreClient.java24 public boolean isAvailable() { in isAvailable() method in StubKeyStoreClient
DDryRunKeyStore.java22 public boolean isAvailable() { in isAvailable() method in DryRunKeyStore
DJSONFileKeyStoreClient.java66 public boolean isAvailable() { in isAvailable() method in JSONFileKeyStoreClient
/tools/tradefederation/core/tests/src/com/android/tradefed/util/keystore/
DJSONFileKeyStoreClientTest.java79 assertTrue(keystore.isAvailable()); in testKeyStoreFetchFile()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DArgsOptionParserTest.java1011 EasyMock.expect(c.isAvailable()).andReturn(true); in testKeyStore_string()
1053 EasyMock.expect(c.isAvailable()).andStubReturn(false); in testKeyStore_stringWithUnavalableKeyStore()
1068 EasyMock.expect(c.isAvailable()).andReturn(false); in testKeyStore_stringWithUnavalableKeyStoreWithKey()
1089 EasyMock.expect(c.isAvailable()).andReturn(true); in testKeyStore_stringWithUnavalableKey()
1115 EasyMock.expect(c.isAvailable()).andReturn(true); in testKeyStore_mapOptions()
1143 EasyMock.expect(c.isAvailable()).andReturn(true); in testKeyStore_mapOptionsSingleValue()
1175 EasyMock.expect(c.isAvailable()).andReturn(true); in testKeyStore_mapOptionsMixedValue()
1209 EasyMock.expect(c.isAvailable()).andStubReturn(true); in testKeyStore_mapOptionsMixedValue_allKeys()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/shard/
DShardHelperTest.java342 doReturn(true).when(mockClient).isAvailable(); in testClone_withKeystore()
402 doReturn(true).when(mockClient).isAvailable(); in testClone_withKeystore_loadingFails()
/tools/tradefederation/core/src/com/android/tradefed/config/
DArgsOptionParser.java563 if (!c.isAvailable()) { in getKeyStoreValueIfNeeded()