Symbol: squashfs_decompressor
fs/squashfs/decompressor.c
26
static const struct squashfs_decompressor squashfs_lzma_unsupported_comp_ops = {
fs/squashfs/decompressor.c
31
static const struct squashfs_decompressor squashfs_lz4_comp_ops = {
fs/squashfs/decompressor.c
37
static const struct squashfs_decompressor squashfs_lzo_comp_ops = {
fs/squashfs/decompressor.c
43
static const struct squashfs_decompressor squashfs_xz_comp_ops = {
fs/squashfs/decompressor.c
49
static const struct squashfs_decompressor squashfs_zlib_comp_ops = {
fs/squashfs/decompressor.c
55
static const struct squashfs_decompressor squashfs_zstd_comp_ops = {
fs/squashfs/decompressor.c
60
static const struct squashfs_decompressor squashfs_unknown_comp_ops = {
fs/squashfs/decompressor.c
64
static const struct squashfs_decompressor *decompressor[] = {
fs/squashfs/decompressor.c
75
const struct squashfs_decompressor *squashfs_lookup_decompressor(int id)
fs/squashfs/decompressor.h
35
extern const struct squashfs_decompressor squashfs_xz_comp_ops;
fs/squashfs/decompressor.h
39
extern const struct squashfs_decompressor squashfs_lz4_comp_ops;
fs/squashfs/decompressor.h
43
extern const struct squashfs_decompressor squashfs_lzo_comp_ops;
fs/squashfs/decompressor.h
47
extern const struct squashfs_decompressor squashfs_zlib_comp_ops;
fs/squashfs/decompressor.h
51
extern const struct squashfs_decompressor squashfs_zstd_comp_ops;
fs/squashfs/lz4_wrapper.c
137
const struct squashfs_decompressor squashfs_lz4_comp_ops = {
fs/squashfs/lzo_wrapper.c
115
const struct squashfs_decompressor squashfs_lzo_comp_ops = {
fs/squashfs/squashfs.h
43
extern const struct squashfs_decompressor *squashfs_lookup_decompressor(int);
fs/squashfs/squashfs_fs_sb.h
44
const struct squashfs_decompressor *decompressor;
fs/squashfs/super.c
152
static const struct squashfs_decompressor *supported_squashfs_filesystem(
fs/squashfs/super.c
156
const struct squashfs_decompressor *decompressor;
fs/squashfs/xz_wrapper.c
187
const struct squashfs_decompressor squashfs_xz_comp_ops = {
fs/squashfs/zlib_wrapper.c
128
const struct squashfs_decompressor squashfs_zlib_comp_ops = {
fs/squashfs/zstd_wrapper.c
146
const struct squashfs_decompressor squashfs_zstd_comp_ops = {