Searched refs:xz_ret (Results 1 – 12 of 12) sorted by relevance
/linux-6.3-rc2/lib/xz/ |
A D | xz_private.h | 125 XZ_EXTERN enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, 129 XZ_EXTERN enum xz_ret xz_dec_lzma2_run(struct xz_dec_lzma2 *s, 148 XZ_EXTERN enum xz_ret xz_dec_bcj_reset(struct xz_dec_bcj *s, uint8_t id); 155 XZ_EXTERN enum xz_ret xz_dec_bcj_run(struct xz_dec_bcj *s,
|
A D | xz_dec_stream.c | 175 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli() 218 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block() 220 enum xz_ret ret; in dec_block() 296 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index() 298 enum xz_ret ret; in dec_index() 387 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header() 422 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer() 449 static enum xz_ret dec_block_header(struct xz_dec *s) in dec_block_header() 451 enum xz_ret ret; in dec_block_header() 551 enum xz_ret ret; in dec_main() [all …]
|
A D | xz_dec_bcj.c | 35 enum xz_ret ret; 417 XZ_EXTERN enum xz_ret xz_dec_bcj_run(struct xz_dec_bcj *s, in xz_dec_bcj_run() 536 XZ_EXTERN enum xz_ret xz_dec_bcj_reset(struct xz_dec_bcj *s, uint8_t id) in xz_dec_bcj_reset()
|
A D | xz_dec_test.c | 39 static enum xz_ret ret;
|
A D | xz_dec_lzma2.c | 964 XZ_EXTERN enum xz_ret xz_dec_lzma2_run(struct xz_dec_lzma2 *s, in xz_dec_lzma2_run() 1165 XZ_EXTERN enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, uint8_t props) in xz_dec_lzma2_reset() 1215 enum xz_ret xz_dec_microlzma_run(struct xz_dec_microlzma *s_ptr, in xz_dec_microlzma_run()
|
/linux-6.3-rc2/include/linux/ |
A D | xz.h | 108 enum xz_ret { enum 214 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b); 332 extern enum xz_ret xz_dec_microlzma_run(struct xz_dec_microlzma *s,
|
/linux-6.3-rc2/kernel/module/ |
A D | decompress.c | 155 enum xz_ret xz_ret; in module_xz_decompress() local 184 xz_ret = xz_dec_run(xz_dec, &xz_buf); in module_xz_decompress() 188 } while (xz_buf.out_pos == PAGE_SIZE && xz_ret == XZ_OK); in module_xz_decompress() 190 if (xz_ret != XZ_STREAM_END) { in module_xz_decompress() 191 pr_err("decompression failed with status %d\n", xz_ret); in module_xz_decompress()
|
/linux-6.3-rc2/drivers/base/firmware_loader/ |
A D | main.c | 375 static int fw_decompress_xz_error(struct device *dev, enum xz_ret xz_ret) in fw_decompress_xz_error() argument 377 if (xz_ret != XZ_STREAM_END) { in fw_decompress_xz_error() 378 dev_warn(dev, "xz decompression failed (xz_ret=%d)\n", xz_ret); in fw_decompress_xz_error() 379 return xz_ret == XZ_MEM_ERROR ? -ENOMEM : -EINVAL; in fw_decompress_xz_error() 390 enum xz_ret xz_ret; in fw_decompress_xz_single() local 403 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_single() 407 return fw_decompress_xz_error(dev, xz_ret); in fw_decompress_xz_single() 416 enum xz_ret xz_ret; in fw_decompress_xz_pages() local 441 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_pages() 447 } while (xz_ret == XZ_OK); in fw_decompress_xz_pages() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlxfw/ |
A D | mlxfw_mfa2.c | 393 enum xz_ret xz_ret; in mlxfw_mfa2_xz_dec_run() local 395 xz_ret = xz_dec_run(xz_dec, xz_buf); in mlxfw_mfa2_xz_dec_run() 397 switch (xz_ret) { in mlxfw_mfa2_xz_dec_run() 420 pr_err("xz error %d\n", xz_ret); in mlxfw_mfa2_xz_dec_run()
|
/linux-6.3-rc2/fs/squashfs/ |
A D | xz_wrapper.c | 140 enum xz_ret xz_err; in squashfs_xz_uncompress()
|
/linux-6.3-rc2/lib/ |
A D | decompress_unxz.c | 259 enum xz_ret ret; in unxz()
|
/linux-6.3-rc2/fs/erofs/ |
A D | decompressor_lzma.c | 203 enum xz_ret xz_err; in z_erofs_lzma_decompress()
|
Completed in 18 milliseconds