Lines Matching refs:bucket

100  * EOS or FLUSH bucket. this was not possible with the mem BIO where we
148 /* Send a FLUSH bucket down the output filter stack; returns 1 on
180 * apache will destroy the bucket brigade for us
212 /* Use a transient bucket for the output data - any downstream
395 * particular characteristics of the bucket we are
402 /* This stream bucket was consumed */
422 /* This physical bucket was consumed */
426 /* Only part of this physical bucket was consumed */
919 apr_bucket *bucket;
934 bucket = HTTP_ON_HTTPS_PORT_BUCKET(f->c->bucket_alloc);
939 /* Send an error bucket, though the proxy currently has no
941 bucket = ap_bucket_error_create(HTTP_BAD_GATEWAY, NULL,
952 APR_BRIGADE_INSERT_TAIL(bb, bucket);
954 bucket = apr_bucket_eos_create(f->c->bucket_alloc);
955 APR_BRIGADE_INSERT_TAIL(bb, bucket);
1392 apr_bucket *bucket = apr_bucket_eos_create(f->c->bucket_alloc);
1393 APR_BRIGADE_INSERT_TAIL(bb, bucket);
1400 apr_bucket *bucket = apr_bucket_immortal_create(CRLF, 2, f->c->bucket_alloc);
1401 APR_BRIGADE_INSERT_TAIL(bb, bucket);
1480 /* Create a transient bucket out of the decrypted data. */
1482 apr_bucket *bucket =
1484 APR_BRIGADE_INSERT_TAIL(bb, bucket);
1553 /* ssl_io_filter_output() produces one SSL/TLS message per bucket
1583 * Find the last bucket - if any - of that prefix. count gives
1607 * a) more than one bucket is found to coalesce, or
1608 * b) the brigade contains only a single data bucket, or
1638 "unexpected bucket type during coalesce");
1646 * known-length data bucket, rather than the usual
1651 "coalesce failed to read from data bucket");
1659 "unexpected coalesced bucket data length");
1729 apr_bucket *bucket = APR_BRIGADE_FIRST(bb);
1734 if (APR_BUCKET_IS_EOS(bucket)) {
1739 * EOS bucket.
1747 else if (APR_BUCKET_IS_FLUSH(bucket)) {
1754 /* bio_filter_out_flush() already passed down a flush bucket
1757 apr_bucket_delete(bucket);
1759 else if (AP_BUCKET_IS_EOC(bucket)) {
1760 /* The EOC bucket indicates connection closure, so SSL
1773 status = apr_bucket_read(bucket, &data, &len, rblock);
1792 apr_bucket_delete(bucket);
1844 /* Iterate through the returned brigade: setaside each bucket
1859 "could not read bucket for SSL buffer");
1868 "could not setaside bucket for SSL buffer");