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.java250 if (getConfigurationObjectList(DEVICE_NAME).size() > 1) { in notAllowedInMultiMode()
254 if (getConfigurationObjectList(DEVICE_NAME).isEmpty()) { in notAllowedInMultiMode()
301 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getBuildProvider()
312 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getTargetPreparers()
322 return (List<IRemoteTest>) getConfigurationObjectList(TEST_TYPE_NAME); in getTests()
332 return ((List<IDeviceConfiguration>)getConfigurationObjectList(DEVICE_NAME)) in getDeviceRecovery()
358 return (List<IMultiTargetPreparer>) getConfigurationObjectList(MULTI_PREPARER_TYPE_NAME); in getMultiTargetPreparers()
366 getConfigurationObjectList(MULTI_PRE_TARGET_PREPARER_TYPE_NAME); in getMultiPreTargetPreparers()
376 getConfigurationObjectList(SYSTEM_STATUS_CHECKER_TYPE_NAME); in getSystemStatusCheckers()
385 return (List<ITestInvocationListener>) getConfigurationObjectList( in getTestInvocationListeners()
[all …]
DGlobalConfiguration.java375 return (List<IDeviceMonitor>) getConfigurationObjectList(DEVICE_MONITOR_TYPE_NAME); in getDeviceMonitors()
389 return (List<IHostMonitor>) getConfigurationObjectList(HOST_MONITOR_TYPE_NAME); in getHostMonitors()
442 return (List<IMultiDeviceRecovery>)getConfigurationObjectList( in getMultiDeviceRecoveryHandlers()
449 private List<?> getConfigurationObjectList(String typeName) { in getConfigurationObjectList() method in GlobalConfiguration
458 List<?> configObjects = getConfigurationObjectList(typeName); in getConfigurationObject()
DIConfiguration.java192 public List<?> getConfigurationObjectList(String typeName); in getConfigurationObjectList() method
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java121 List<TestConfig> configList = (List<TestConfig>)mConfig.getConfigurationObjectList( in testGetConfigurationObjectList()
183 assertNull(mConfig.getConfigurationObjectList("non-existent")); in testGetConfigurationObjectList_wrongname()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardHelper.java225 objType, deepCopy.getConfigurationObjectList(objType)); in cloneConfigObject()