Home
last modified time | relevance | path

Searched refs:whitelistConfigs (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/config/
DGlobalConfiguration.java765 public File cloneConfigWithFilter(String... whitelistConfigs) throws IOException { in cloneConfigWithFilter() argument
766 return cloneConfigWithFilter(new HashSet<>(), whitelistConfigs); in cloneConfigWithFilter()
771 public File cloneConfigWithFilter(Set<String> exclusionPatterns, String... whitelistConfigs) in cloneConfigWithFilter() argument
787 if (whitelistConfigs == null || whitelistConfigs.length == 0) { in cloneConfigWithFilter()
788 whitelistConfigs = CONFIGS_FOR_SUBPROCESS_WHITE_LIST; in cloneConfigWithFilter()
790 for (String config : whitelistConfigs) { in cloneConfigWithFilter()
DIGlobalConfiguration.java316 public File cloneConfigWithFilter(String... whitelistConfigs) throws IOException; in cloneConfigWithFilter() argument
328 public File cloneConfigWithFilter(Set<String> exclusionPatterns, String... whitelistConfigs) in cloneConfigWithFilter() argument
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java241 String[] whitelistConfigs = in runTests() local
250 .cloneConfigWithFilter(new HashSet<>(), whitelistConfigs); in runTests()