Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/config/
DIConfigurationFactory.java135 public List<String> getConfigList(); in getConfigList() method
144 public List<String> getConfigList(String subPath); in getConfigList() method
154 public List<String> getConfigList(String subPath, boolean loadFromEnv); in getConfigList() method
DConfigurationFactory.java635 public List<String> getConfigList() { in getConfigList() method in ConfigurationFactory
636 return getConfigList(null); in getConfigList()
643 public List<String> getConfigList(String subPath) { in getConfigList() method in ConfigurationFactory
644 return getConfigList(subPath, true); in getConfigList()
649 public List<String> getConfigList(String subPath, boolean loadFromEnv) { in getConfigList() method in ConfigurationFactory
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DTfSuiteRunner.java96 List<String> configs = configFactory.getConfigList(mSuitePrefix, false); in loadTests()
DSuiteModuleLoader.java119 List<String> configs = configFactory.getConfigList(suitePrefix, false); in loadConfigsFromJars()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationFactoryTest.java364 List<String> listConfigs = mRealFactory.getConfigList(); in testListAllConfigs()
378 List<String> listConfigs = mRealFactory.getConfigList(subDir); in testListSubConfig()
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java229 new ConfigCompletor(getConfigurationFactory().getConfigList())); in Console()