Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/config/remote/
DGcsRemoteFileResolverTest.java72 ResolvedFile resFile = mResolver.resolveRemoteFile(args); in testResolve() local
73 assertTrue(resFile.getResolvedFile() instanceof ExtendedFile); in testResolve()
74 ((ExtendedFile) resFile.getResolvedFile()).waitForDownload(); in testResolve()
95 ResolvedFile resFile = mResolver.resolveRemoteFile(args); in testResolveWithTimeout() local
96 assertTrue(resFile.getResolvedFile() instanceof ExtendedFile); in testResolveWithTimeout()
97 ((ExtendedFile) resFile.getResolvedFile()).waitForDownload(); in testResolveWithTimeout()
113 ResolvedFile resFile = mResolver.resolveRemoteFile(args); in testResolve_error() local
114 assertTrue(resFile.getResolvedFile() instanceof ExtendedFile); in testResolve_error()
115 ((ExtendedFile) resFile.getResolvedFile()).waitForDownload(); in testResolve_error()
/tools/tradefederation/contrib/src/com/android/wireless/tests/
DWifiStressTest.java279 File resFile = null; in logOutputFile() local
283 resFile = mTestDevice.pullFileFromExternal(mOutputFile); in logOutputFile()
284 if (resFile != null) { in logOutputFile()
286 CLog.d("Sending %d byte file %s into the logosphere!", resFile.length(), resFile); in logOutputFile()
287 outputSource = new FileInputStreamSource(resFile); in logOutputFile()
294 parseOutputFile(test, resFile, listener); in logOutputFile()
297 FileUtil.deleteFile(resFile); in logOutputFile()
/tools/tradefederation/core/javatests/com/android/tradefed/device/cloud/
DRemoteFileUtilTest.java81 File resFile = null; in testFetchRemoteFile() local
83 resFile = in testFetchRemoteFile()
87 assertTrue(resFile.getName().startsWith("kernel")); in testFetchRemoteFile()
89 FileUtil.deleteFile(resFile); in testFetchRemoteFile()
117 File resFile = in testFetchRemoteFile_fail() local
119 assertNull(resFile); in testFetchRemoteFile_fail()
/tools/tradefederation/core/javatests/com/android/tradefed/config/
DSandboxConfigurationFactoryTest.java92 String resFile = (String) invocation.getArguments()[7]; in expectDumpCmd()
96 new File(resFile)); in expectDumpCmd()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DSandboxConfigDump.java112 File resFile = new File(argList.remove(0)); in parse() local
174 pw = new PrintWriter(resFile); in parse()