Home
last modified time | relevance | path

Searched refs:fileThreshold (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/io/
DFileBackedOutputStream.java43 private final int fileThreshold; field in FileBackedOutputStream
75 public FileBackedOutputStream(int fileThreshold) { in FileBackedOutputStream() argument
76 this(fileThreshold, false); in FileBackedOutputStream()
90 public FileBackedOutputStream(int fileThreshold, boolean resetOnFinalize) { in FileBackedOutputStream() argument
91 this.fileThreshold = fileThreshold; in FileBackedOutputStream()
195 if (file == null && (memory.getCount() + len > fileThreshold)) { in update()
/external/guava/guava-tests/test/com/google/common/io/
DFileBackedOutputStreamTest.java77 private void testThreshold(int fileThreshold, int dataSize, boolean singleByte, in testThreshold() argument
80 FileBackedOutputStream out = new FileBackedOutputStream(fileThreshold, resetOnFinalize); in testThreshold()
82 int chunk1 = Math.min(dataSize, fileThreshold); in testThreshold()