Searched defs:NO_FLUSH (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DDeflater.java147 public static final int NO_FLUSH = 0; field in class:Deflater
364 * <p>This method uses {@link #NO_FLUSH} as its compression flush mode.
367 * {@code deflater.deflate(b, off, len, Deflater.NO_FLUSH)}.
376 return deflate(b, off, len, NO_FLUSH);
385 * <p>This method uses {@link #NO_FLUSH} as its compression flush mode.
388 * {@code deflater.deflate(b, 0, b.length, Deflater.NO_FLUSH)}.
395 return deflate(b, 0, b.length, NO_FLUSH);
405 * <li>{@link #NO_FLUSH}: allows the deflater to decide how much data
451 if (flush == NO_FLUSH || flush == SYNC_FLUSH ||

Completed in 66 milliseconds