Lines Matching defs:dc

127 static int gzip_decompress(wget_decompressor *dc, const char *src, size_t srclen)  in gzip_decompress()
163 static void gzip_exit(wget_decompressor *dc) in gzip_exit()
199 static int lzma_decompress(wget_decompressor *dc, const char *src, size_t srclen) in lzma_decompress()
235 static void lzma_exit(wget_decompressor *dc) in lzma_exit()
252 static int brotli_decompress(wget_decompressor *dc, const char *src, size_t srclen) in brotli_decompress()
293 static void brotli_exit(wget_decompressor *dc) in brotli_exit()
318 static int zstd_decompress(wget_decompressor *dc, const char *src, size_t srclen) in zstd_decompress()
351 static void zstd_exit(wget_decompressor *dc) in zstd_exit()
376 static int lzip_drain(wget_decompressor *dc) in lzip_drain()
396 static int lzip_decompress(wget_decompressor *dc, const char *src, size_t srclen) in lzip_decompress()
427 static void lzip_exit(wget_decompressor *dc) in lzip_exit()
451 static int bzip2_decompress(wget_decompressor *dc, const char *src, size_t srclen) in bzip2_decompress()
487 static void bzip2_exit(wget_decompressor *dc) in bzip2_exit()
493 static int identity(wget_decompressor *dc, const char *src, size_t srclen) in identity()
507 wget_decompressor *dc = wget_calloc(1, sizeof(wget_decompressor)); in wget_decompress_open() local
581 void wget_decompress_close(wget_decompressor *dc) in wget_decompress_close()
590 int wget_decompress(wget_decompressor *dc, const char *src, size_t srclen) in wget_decompress()
602 void wget_decompress_set_error_handler(wget_decompressor *dc, wget_decompressor_error_handler *erro… in wget_decompress_set_error_handler()
608 void *wget_decompress_get_context(wget_decompressor *dc) in wget_decompress_get_context()