Lines Matching defs:stream

249 	struct la_zstream	 stream;
699 xar->stream.next_in = (const unsigned char *)buff;
700 xar->stream.avail_in = s;
707 r = compression_code(&(a->archive), &(xar->stream),
711 if (xar->stream.avail_out == 0 ||
714 xar->stream.avail_out;
723 xar->stream.next_out = xar->wbuff;
724 xar->stream.avail_out =
735 rsize = s - xar->stream.avail_in;
1004 encname = "application/octet-stream"; break;
1741 &(xar->stream), 6, 1);
1744 xar->stream.next_in = bp->content;
1745 xar->stream.avail_in = bp->use;
1746 xar->stream.total_in = 0;
1747 xar->stream.next_out = xar->wbuff;
1748 xar->stream.avail_out = sizeof(xar->wbuff);
1749 xar->stream.total_out = 0;
1754 &(xar->stream), ARCHIVE_Z_FINISH);
1757 size = sizeof(xar->wbuff) - xar->stream.avail_out;
1763 xar->stream.next_out = xar->wbuff;
1764 xar->stream.avail_out = sizeof(xar->wbuff);
1766 r = compression_end(&(a->archive), &(xar->stream));
1769 xar->toc.length = xar->stream.total_out;
1925 compression_end(&(a->archive), &(xar->stream));
2652 "Can't allocate memory for gzip stream");
2749 "Can't allocate memory for bzip2 stream");
2877 "Can't allocate memory for lzma stream");
2930 "Can't allocate memory for xz stream");
3079 &(a->archive), &(xar->stream),
3084 &(a->archive), &(xar->stream),
3089 &(a->archive), &(xar->stream),
3094 &(a->archive), &(xar->stream),
3102 xar->stream.total_in = 0;
3103 xar->stream.next_out = xar->wbuff;
3104 xar->stream.avail_out = sizeof(xar->wbuff);
3105 xar->stream.total_out = 0;
3192 xar->stream.next_in = (const unsigned char *)value;
3193 xar->stream.avail_in = size;
3196 &(xar->stream), ARCHIVE_Z_FINISH);
3201 size = sizeof(xar->wbuff) - xar->stream.avail_out;
3208 xar->stream.next_out = xar->wbuff;
3209 xar->stream.avail_out = sizeof(xar->wbuff);
3213 heap->length = xar->stream.total_out;
3222 r = compression_end(&(a->archive), &(xar->stream));