Home
last modified time | relevance | path

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

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
DRSSFeedPublisherTask.java176 File destFile = new File(CVSTemp + FS + "checkoutDir" + FS + filename); //$NON-NLS-1$ in commitFeedToCVS() local
177 boolean fileInCVS = destFile.isFile(); in commitFeedToCVS()
183 RSSFeedUtil.transferData(new FileInputStream(file),new FileOutputStream(destFile)); in commitFeedToCVS()
DRSSFeedWatcherTask.java224 private void downloadFeed(File destFile, boolean verbose) in downloadFeed() argument
230 …System.out.println(Messages.getString("RSSFeedWatcherTask.To") + CL + SP + destFile + SP); //$NON-… in downloadFeed()
232 RSSFeedUtil.transferData((new URL(feedURL)).openStream(), new FileOutputStream(destFile)); in downloadFeed()
/external/quake/src/com/android/quake/
DDownloaderActivity.java870 File destFile = new File(mDataDir, dest); in download() local
877 return destFile; in download()
914 File destFile = new File(mDataDir, dest); in openOutput() local
915 File parent = destFile.getParentFile(); in openOutput()
923 FileOutputStream os = new FileOutputStream(destFile, append); in openOutput()