Lines Matching refs:flush
22 flush: Self::Flush, in run()
28 flush: Self::Flush, in run_vec()
44 flush: FlushCompress, in run()
46 Ok(self.compress(input, output, flush).unwrap()) in run()
52 flush: FlushCompress, in run_vec()
54 Ok(self.compress_vec(input, output, flush).unwrap()) in run_vec()
70 flush: FlushDecompress, in run()
72 self.decompress(input, output, flush) in run()
78 flush: FlushDecompress, in run_vec()
80 self.decompress_vec(input, output, flush) in run_vec()
130 let flush = if eof { in read() localVariable
135 ret = data.run(input, dst, flush); in read()
255 fn flush(&mut self) -> io::Result<()> { in flush() method
276 self.obj.as_mut().unwrap().flush() in flush()