Lines Matching refs:msblk
64 void *squashfs_decompressor_create(struct squashfs_sb_info *msblk, in squashfs_decompressor_create() argument
90 decomp_strm->stream = msblk->decompressor->init(msblk, in squashfs_decompressor_create()
108 void squashfs_decompressor_destroy(struct squashfs_sb_info *msblk) in squashfs_decompressor_destroy() argument
110 struct squashfs_stream *stream = msblk->stream; in squashfs_decompressor_destroy()
118 msblk->decompressor->free(decomp_strm->stream); in squashfs_decompressor_destroy()
129 static struct decomp_stream *get_decomp_stream(struct squashfs_sb_info *msblk, in get_decomp_stream() argument
158 decomp_strm->stream = msblk->decompressor->init(msblk, in get_decomp_stream()
185 int squashfs_decompress(struct squashfs_sb_info *msblk, struct buffer_head **bh, in squashfs_decompress() argument
189 struct squashfs_stream *stream = msblk->stream; in squashfs_decompress()
190 struct decomp_stream *decomp_stream = get_decomp_stream(msblk, stream); in squashfs_decompress()
191 res = msblk->decompressor->decompress(msblk, decomp_stream->stream, in squashfs_decompress()
196 msblk->decompressor->name); in squashfs_decompress()