Searched refs:FlushDecompress (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/flate2/src/ |
D | zio.rs | 5 use crate::{Compress, Decompress, DecompressError, FlushCompress, FlushDecompress, Status}; 59 type Flush = FlushDecompress; 70 flush: FlushDecompress, in run() argument 78 flush: FlushDecompress, in run_vec() argument 104 impl Flush for FlushDecompress { implementation 106 FlushDecompress::None in none() 110 FlushDecompress::Sync in sync() 114 FlushDecompress::Finish in finish()
|
D | mem.rs | 91 pub enum FlushDecompress { enum 462 flush: FlushDecompress, in decompress() argument 485 flush: FlushDecompress, in decompress_vec() argument 567 use crate::{Compression, Decompress, FlushDecompress}; 592 .decompress_vec(&data[10..], &mut decoded, FlushDecompress::Finish) in issue51() 597 drop(d.decompress_vec(&[0], &mut decoded, FlushDecompress::None)); in issue51() 617 .decompress(&zlib, &mut dst, FlushDecompress::Finish) in reset() 624 .decompress(&deflate, &mut dst, FlushDecompress::Finish) in reset() 652 .decompress(&encoded, &mut decoded, FlushDecompress::Finish) in set_dictionary_with_zlib_header() 672 FlushDecompress::Finish, in set_dictionary_with_zlib_header() [all …]
|
D | lib.rs | 114 pub use crate::mem::{FlushCompress, FlushDecompress};
|
/external/rust/crates/flate2/src/ffi/ |
D | mod.rs | 3 use crate::mem::{CompressError, DecompressError, FlushCompress, FlushDecompress, Status}; 21 flush: FlushDecompress, in decompress() argument
|
D | rust.rs | 58 flush: FlushDecompress, in decompress() argument
|
D | c.rs | 13 use crate::mem::{self, FlushDecompress, Status}; 193 flush: FlushDecompress, in decompress() argument
|