Home
last modified time | relevance | path

Searched refs:getConfigurationObjectList (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/config/
DConfiguration.java251 if (getConfigurationObjectList(DEVICE_NAME).size() > 1) { in notAllowedInMultiMode()
255 if (getConfigurationObjectList(DEVICE_NAME).isEmpty()) { in notAllowedInMultiMode()
302 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getBuildProvider()
313 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getTargetPreparers()
323 return (List<IRemoteTest>) getConfigurationObjectList(TEST_TYPE_NAME); in getTests()
333 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getDeviceRecovery()
365 return (List<IMultiTargetPreparer>) getConfigurationObjectList(MULTI_PREPARER_TYPE_NAME); in getMultiTargetPreparers()
373 getConfigurationObjectList(MULTI_PRE_TARGET_PREPARER_TYPE_NAME); in getMultiPreTargetPreparers()
383 getConfigurationObjectList(SYSTEM_STATUS_CHECKER_TYPE_NAME); in getSystemStatusCheckers()
392 return (List<ITestInvocationListener>) getConfigurationObjectList( in getTestInvocationListeners()
[all …]
DIConfiguration.java196 public List<?> getConfigurationObjectList(String typeName); in getConfigurationObjectList() method
/tools/tradefederation/core/global_configuration/com/android/tradefed/config/
DGlobalConfiguration.java381 return (List<IDeviceMonitor>) getConfigurationObjectList(DEVICE_MONITOR_TYPE_NAME); in getDeviceMonitors()
393 return (List<IHostMonitor>) getConfigurationObjectList(HOST_MONITOR_TYPE_NAME); in getHostMonitors()
450 return (List<IMultiDeviceRecovery>)getConfigurationObjectList( in getMultiDeviceRecoveryHandlers()
457 private List<?> getConfigurationObjectList(String typeName) { in getConfigurationObjectList() method in GlobalConfiguration
466 List<?> configObjects = getConfigurationObjectList(typeName); in getConfigurationObject()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java142 List<TestConfig> configList = (List<TestConfig>)mConfig.getConfigurationObjectList( in testGetConfigurationObjectList()
204 assertNull(mConfig.getConfigurationObjectList("non-existent")); in testGetConfigurationObjectList_wrongname()
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandConfigBuilderTest.java154 .getConfigurationObjectList(Configuration.RESULT_REPORTER_TYPE_NAME); in testBuild_resultReporters()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandConfigBuilder.java217 List<Object> configObjs = (List<Object>) config.getConfigurationObjectList(typeName); in build()