Home
last modified time | relevance | path

Searched refs:subFolderName (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DGCSFileDownloader.java194 String subFolderName = Paths.get(subRemoteFolder).getFileName().toString(); in recursiveCheckFolderFreshness() local
195 File subFolder = new File(localFolder, subFolderName); in recursiveCheckFolderFreshness()
196 if (new File(localFolder, subFolderName).exists() in recursiveCheckFolderFreshness()
197 && !new File(localFolder, subFolderName).isDirectory()) { in recursiveCheckFolderFreshness()
199 subFolder = new File(localFolder, subFolderName + "_folder"); in recursiveCheckFolderFreshness()
359 String subFolderName = Paths.get(subRemoteFolder).getFileName().toString(); in recursiveDownloadFolder() local
360 File subFolder = new File(localFolder, subFolderName); in recursiveDownloadFolder()
361 if (new File(localFolder, subFolderName).exists() in recursiveDownloadFolder()
362 && !new File(localFolder, subFolderName).isDirectory()) { in recursiveDownloadFolder()
364 subFolder = new File(localFolder, subFolderName + "_folder"); in recursiveDownloadFolder()
/tools/tradefederation/contrib/src/com/android/performance/tests/
DAppTransitionTests.java448 ITestInvocationListener listener, String srcDirectory, String subFolderName) in logTraceFiles() argument
454 tmpDestDir = FileUtil.createTempDir(subFolderName); in logTraceFiles()
456 mDevice.getFileEntry(String.format("%s/%s", srcDirectory, subFolderName)); in logTraceFiles()
483 private void uploadTraceFiles(ITestInvocationListener listener, String subFolderName) in uploadTraceFiles() argument
486 logTraceFiles(listener, mTraceDirectory, subFolderName); in uploadTraceFiles()
491 mDevice.executeShellCommand(String.format(REMOVE_CMD, mTraceDirectory, subFolderName)); in uploadTraceFiles()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGTestTest.java247 final String subFolderName = "subFolder"; in testRun_nested() local
251 subFolderName, in testRun_nested()
253 MockFileUtil.setMockDirPath(mMockITestDevice, nativeTestPath, subFolderName, test1); in testRun_nested()
256 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath + "/" + subFolderName)) in testRun_nested()
261 String[] files = new String[] {subFolderName}; in testRun_nested()
264 EasyMock.expect(mMockITestDevice.getChildren(nativeTestPath + "/" + subFolderName)) in testRun_nested()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/rust/
DRustBinaryTestTest.java269 final String subFolderName = "subFolder"; in testRun_nested() local
270 final String subDirPath = testPath + "/" + subFolderName; in testRun_nested()
277 subFolderName, in testRun_nested()
280 MockFileUtil.setMockDirPath(mMockITestDevice, testPath, subFolderName, test1); in testRun_nested()
287 String[] files = new String[] {subFolderName}; in testRun_nested()