Searched refs:IO_BUFFER_SIZE (Results 1 – 3 of 3) sorted by relevance
47 private static final int IO_BUFFER_SIZE = 8 * 1024; field in ImageFetcher275 in = new BufferedInputStream(urlConnection.getInputStream(), IO_BUFFER_SIZE); in downloadUrlToStream()276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE); in downloadUrlToStream()
112 private static final int IO_BUFFER_SIZE = 8 * 1024; field in DiskLruCache323 IO_BUFFER_SIZE); in open()340 InputStream in = new BufferedInputStream(new FileInputStream(journalFile), IO_BUFFER_SIZE); in readJournal()431 Writer writer = new BufferedWriter(new FileWriter(journalFileTmp), IO_BUFFER_SIZE); in rebuildJournal()452 journalWriter = new BufferedWriter(new FileWriter(journalFile, true), IO_BUFFER_SIZE); in rebuildJournal()
236 private static final int IO_BUFFER_SIZE = 4 * 1024; field in ImageDownloader.BitmapDownloaderTask273 outputStream = new BufferedOutputStream(dataStream, IO_BUFFER_SIZE); in doInBackground()339 byte[] b = new byte[IO_BUFFER_SIZE]; in copy()