Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/config/gcs/
DGCSConfigurationFactory.java62 InputStream configStream = getBundledConfigStream(name); in getConfigStream() local
63 if (configStream == null) { in getConfigStream()
65 configStream = mConfigServer.getConfig(name); in getConfigStream()
66 if (configStream == null) { in getConfigStream()
86 FileUtil.writeToFile(configStream, mConfigDownloaded); in getConfigStream()
88 configStream.reset(); in getConfigStream()
94 return new BufferedInputStream(configStream); in getConfigStream()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationFactory.java271 InputStream configStream = in isBundledConfig() local
276 return configStream != null; in isBundledConfig()
763 InputStream configStream = getConfigStream(configName); in dumpConfig() local
764 StreamUtil.copyStreams(configStream, out); in dumpConfig()
791 InputStream configStream = getBundledConfigStream(name); in getConfigStream() local
792 if (configStream == null) { in getConfigStream()
795 configStream = new FileInputStream(name); in getConfigStream()
802 return new BufferedInputStream(configStream); in getConfigStream()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationFactoryTest.java211 InputStream configStream = getClass().getResourceAsStream( in testGetConfiguration_xmlpath() local
215 FileUtil.writeToFile(configStream, tmpFile); in testGetConfiguration_xmlpath()
236 InputStream configStream = getClass().getResourceAsStream( in testGetGlobalConfiguration_xmlpath() local
240 FileUtil.writeToFile(configStream, tmpFile); in testGetGlobalConfiguration_xmlpath()
572 InputStream configStream = getClass().getResourceAsStream( in testCreateConfigurationFromArgs_templateInclude_local() local
576 FileUtil.writeToFile(configStream, tmpConfig); in testCreateConfigurationFromArgs_templateInclude_local()