Searched refs:apr_bucket_read (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/apr-util/buckets/
H A Dapr_brigade.c143 rv = apr_bucket_read(e, &s, &len, APR_BLOCK_READ);
165 rv = apr_bucket_read(e, &s, &len, APR_BLOCK_READ);
172 * might have been morphed by the apr_bucket_read() above, but
210 if ((status = apr_bucket_read(bkt, &ignore, &len,
237 status = apr_bucket_read(b, &str, &str_len, APR_BLOCK_READ);
319 rv = apr_bucket_read(e, &str, &len, block);
376 rv = apr_bucket_read(e, &iov_base, &iov_len, APR_NONBLOCK_READ);
H A Dapr_buckets_file.c91 return apr_bucket_read(e, str, len, block);
/freebsd-13-stable/contrib/apr-util/test/
H A Dtestbuckets.c222 apr_bucket_read(e, &adata, &alen,
270 apr_bucket_read(e, &data, &len, APR_BLOCK_READ));
277 apr_bucket_read(e, &data, &len, APR_BLOCK_READ));
430 apr_bucket_read(e, &buf, &len, APR_BLOCK_READ) == APR_EOF);
/freebsd-13-stable/contrib/apr-util/include/
H A Dapr_buckets.h103 * Note: all of the above functions have wrapper macros (apr_bucket_read(),
144 * is not returned by apr_bucket_read() and is not indicated by
1023 * The apr_bucket_read function returns a convenient amount of data
1043 * apr_bucket_read function will read a convenient amount of data
1048 * To understand why apr_bucket_read might do this, consider the loop
1087 #define apr_bucket_read(e,str,len,block) (e)->type->read(e, str, len, block) macro

Completed in 113 milliseconds