Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/config/
DConfiguration.java233 if (getConfigurationObjectList(DEVICE_NAME).size() > 1) { in notAllowedInMultiMode()
237 if (getConfigurationObjectList(DEVICE_NAME).size() == 0) { in notAllowedInMultiMode()
284 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getBuildProvider()
295 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getTargetPreparers()
305 return (List<IRemoteTest>) getConfigurationObjectList(TEST_TYPE_NAME); in getTests()
315 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getDeviceRecovery()
341 return (List<IMultiTargetPreparer>) getConfigurationObjectList(MULTI_PREPARER_TYPE_NAME); in getMultiTargetPreparers()
349 getConfigurationObjectList(MULTI_PRE_TARGET_PREPARER_TYPE_NAME); in getMultiPreTargetPreparers()
359 getConfigurationObjectList(SYSTEM_STATUS_CHECKER_TYPE_NAME); in getSystemStatusCheckers()
368 return (List<ITestInvocationListener>) getConfigurationObjectList( in getTestInvocationListeners()
[all …]
DGlobalConfiguration.java324 return (List<IDeviceMonitor>) getConfigurationObjectList(DEVICE_MONITOR_TYPE_NAME); in getDeviceMonitors()
338 return (List<IHostMonitor>) getConfigurationObjectList(HOST_MONITOR_TYPE_NAME); in getHostMonitors()
391 return (List<IMultiDeviceRecovery>)getConfigurationObjectList( in getMultiDeviceRecoveryHandlers()
398 private List<?> getConfigurationObjectList(String typeName) { in getConfigurationObjectList() method in GlobalConfiguration
407 List<?> configObjects = getConfigurationObjectList(typeName); in getConfigurationObject()
DIConfiguration.java172 public List<?> getConfigurationObjectList(String typeName); in getConfigurationObjectList() method
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java120 List<TestConfig> configList = (List<TestConfig>)mConfig.getConfigurationObjectList( in testGetConfigurationObjectList()
182 assertNull(mConfig.getConfigurationObjectList("non-existent")); in testGetConfigurationObjectList_wrongname()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardHelper.java187 objType, deepCopy.getConfigurationObjectList(objType)); in cloneConfigObject()