Lines Matching refs:bucket

77 	php_stream_bucket *bucket;  in php_bz2_decompress_filter()  local
94 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); in php_bz2_decompress_filter()
95 while (bin < bucket->buflen) { in php_bz2_decompress_filter()
100 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_decompress_filter()
108 consumed += bucket->buflen; in php_bz2_decompress_filter()
112 desired = bucket->buflen - bin; in php_bz2_decompress_filter()
116 memcpy(data->strm.next_in, bucket->buf + bin, desired); in php_bz2_decompress_filter()
130 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_decompress_filter()
149 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_decompress_filter()
154 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_decompress_filter()
165bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_C… in php_bz2_decompress_filter()
166 php_stream_bucket_append(buckets_out, bucket TSRMLS_CC); in php_bz2_decompress_filter()
215 php_stream_bucket *bucket; in php_bz2_compress_filter() local
230 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); in php_bz2_compress_filter()
232 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()
243 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_compress_filter()
263 php_stream_bucket_delref(bucket TSRMLS_CC); in php_bz2_compress_filter()
274bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_C… in php_bz2_compress_filter()
275 php_stream_bucket_append(buckets_out, bucket TSRMLS_CC); in php_bz2_compress_filter()