Home | History | Annotate | Download | only in zip

Lines Matching defs:syncFlush

60     private final boolean syncFlush;
69 * @param syncFlush
82 boolean syncFlush) {
91 this.syncFlush = syncFlush;
117 * @param syncFlush
127 boolean syncFlush) {
128 this(out, def, 512, syncFlush);
154 * @param syncFlush
162 public DeflaterOutputStream(OutputStream out, boolean syncFlush) {
163 this(out, new Deflater(), 512, syncFlush);
263 * syncFlush} is {@code true} when this compressed output stream is
275 if (syncFlush && !def.finished()) {