Lines Matching refs:bucket

74 	php_stream_bucket *bucket;  in php_bz2_decompress_filter()  local
91 bucket = php_stream_bucket_make_writeable(buckets_in->head); in php_bz2_decompress_filter()
92 while (bin < bucket->buflen) { in php_bz2_decompress_filter()
97 php_stream_bucket_delref(bucket); in php_bz2_decompress_filter()
105 consumed += bucket->buflen; in php_bz2_decompress_filter()
109 desired = bucket->buflen - bin; in php_bz2_decompress_filter()
113 memcpy(data->strm.next_in, bucket->buf + bin, desired); in php_bz2_decompress_filter()
128 php_stream_bucket_delref(bucket); in php_bz2_decompress_filter()
147 php_stream_bucket_delref(bucket); in php_bz2_decompress_filter()
152 php_stream_bucket_delref(bucket); in php_bz2_decompress_filter()
163 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter()
164 php_stream_bucket_append(buckets_out, bucket); in php_bz2_decompress_filter()
213 php_stream_bucket *bucket; in php_bz2_compress_filter() local
228 bucket = php_stream_bucket_make_writeable(buckets_in->head); in php_bz2_compress_filter()
230 while (bin < bucket->buflen) { in php_bz2_compress_filter()
233 desired = bucket->buflen - bin; in php_bz2_compress_filter()
237 memcpy(data->strm.next_in, bucket->buf + bin, desired); in php_bz2_compress_filter()
245 php_stream_bucket_delref(bucket); in php_bz2_compress_filter()
265 php_stream_bucket_delref(bucket); in php_bz2_compress_filter()
276 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_compress_filter()
277 php_stream_bucket_append(buckets_out, bucket); in php_bz2_compress_filter()