Searched refs:block (Results 1 - 25 of 30) sorted by relevance

12

/httpd/include/
H A Dmod_core.h52 ap_input_mode_t mode, apr_read_type_e block,
H A Dutil_filter.h139 apr_read_type_e block,
292 * @param block How the operations should be performed
299 apr_read_type_e block,
H A Dhttp_core.h727 ap_input_mode_t mode, apr_read_type_e block,
/httpd/server/
H A Deoc_bucket.c21 apr_size_t *len, apr_read_type_e block)
20 eoc_bucket_read(apr_bucket *b, const char **str, apr_size_t *len, apr_read_type_e block) argument
H A Deor_bucket.c44 apr_size_t *len, apr_read_type_e block)
43 eor_bucket_read(apr_bucket *b, const char **str, apr_size_t *len, apr_read_type_e block) argument
H A Derror_bucket.c25 apr_size_t *len, apr_read_type_e block)
24 error_bucket_read(apr_bucket *b, const char **str, apr_size_t *len, apr_read_type_e block) argument
H A Dcore_filters.c94 ap_input_mode_t mode, apr_read_type_e block,
146 rv = apr_brigade_split_line(b, ctx->b, block, HUGE_STRING_LEN);
151 if (APR_STATUS_IS_EAGAIN(rv) && block == APR_NONBLOCK_READ) {
235 rv = apr_bucket_read(e, &str, &len, block);
237 if (APR_STATUS_IS_EAGAIN(rv) && block == APR_NONBLOCK_READ) {
245 else if (block == APR_BLOCK_READ && len == 0) {
706 /* Read would block; flush any pending data and retry. */
93 ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dutil_filter.c549 apr_read_type_e block,
553 return next->frec->filter_func.in_func(next, bb, mode, block,
/httpd/modules/filters/
H A Dmod_request.c67 apr_read_type_e block,
86 return ap_get_brigade(f->next, b, mode, block, readbytes);
128 rv = ap_get_brigade(f->next, b, mode, block, readbytes);
203 apr_read_type_e block,
214 return ap_get_brigade(f->next, b, mode, block, readbytes);
226 return ap_get_brigade(f->next, b, mode, block, readbytes);
65 keep_body_filter(ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
201 kept_body_filter(ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_buffer.c190 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) {
198 return ap_get_brigade(f->next, bb, mode, block, readbytes);
211 return ap_get_brigade(f->next, bb, mode, block, readbytes);
225 rv = ap_get_brigade(f->next, ctx->tmp, mode, block,
189 buffer_in_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_reqtimeout.c171 apr_read_type_e block,
183 return ap_get_brigade(f->next, bb, mode, block, readbytes);
186 if (block == APR_NONBLOCK_READ && mode == AP_MODE_SPECULATIVE) {
190 * check or extend the time since they won't block and we'll see the
193 return ap_get_brigade(f->next, bb, mode, block, readbytes);
208 return ap_get_brigade(f->next, bb, mode, block, readbytes);
219 if (block == APR_NONBLOCK_READ || mode == AP_MODE_INIT
221 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
313 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
168 reqtimeout_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_sed.c375 apr_read_type_e block,
386 return ap_get_brigade(f->next, bb, mode, block, readbytes);
391 return ap_get_brigade(f->next, bb, mode, block, readbytes);
398 return ap_get_brigade(f->next, bb, mode, block, readbytes);
433 status = ap_get_brigade(f->next, bbinp, mode, block, readbytes);
372 sed_request_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_deflate.c1113 apr_read_type_e block,
1127 return ap_get_brigade(f->next, bb, mode, block, readbytes);
1140 return ap_get_brigade(f->next, bb, mode, block, readbytes);
1146 return ap_get_brigade(f->next, bb, mode, block, readbytes);
1158 return ap_get_brigade(f->next, bb, mode, block, readbytes);
1171 rv = ap_get_brigade(f->next, ctx->bb, AP_MODE_READBYTES, block,
1175 * a non-blocking read which would block (an empty brigade for
1238 return ap_get_brigade(f->next, bb, mode, block, readbytes);
1255 rv = ap_get_brigade(f->next, ctx->bb, mode, block, readbytes);
1260 if (block
1110 deflate_in_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
[all...]
H A Dmod_ext_filter.c694 /* XXX handle blocking conditions here... if we block, we need
888 ap_input_mode_t mode, apr_read_type_e block,
903 return ap_get_brigade(f->next, bb, mode, block, readbytes);
923 return ap_get_brigade(f->next, bb, mode, block, readbytes);
926 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
887 ef_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_ratelimit.c234 apr_size_t *len, apr_read_type_e block)
233 rl_bucket_read(apr_bucket *b, const char **str, apr_size_t *len, apr_read_type_e block) argument
/httpd/modules/apreq/
H A Dapreq_private_apache2.h39 apr_read_type_e block,
H A Dfilter.c331 apr_read_type_e block,
346 return ap_get_brigade(f->next, bb, mode, block, readbytes);
376 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
382 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
328 apreq_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
/httpd/modules/ldap/
H A Dutil_ldap_cache_mgr.c105 apr_rmm_off_t block = apr_rmm_calloc(cache->rmm_addr, size); local
106 return block ? (void *)apr_rmm_addr_get(cache->rmm_addr, block) : NULL;
122 apr_rmm_off_t block = apr_rmm_calloc(cache->rmm_addr, strlen(s)+1); local
123 char *buf = block ? (char *)apr_rmm_addr_get(cache->rmm_addr, block) : NULL;
335 apr_rmm_off_t block; local
346 block = apr_rmm_calloc(st->cache_rmm, sizeof(util_ald_cache_t));
347 cache = block ? (util_ald_cache_t *)apr_rmm_addr_get(st->cache_rmm, block)
[all...]
/httpd/modules/session/
H A Dmod_session_crypto.c128 apr_crypto_block_t *block = NULL; local
178 res = apr_crypto_block_encrypt_init(&block, &iv, key, &blockSize, r->pool);
187 strlen(in), block);
193 res = apr_crypto_block_encrypt_finish(encrypt + encryptlen, &tlen, block);
230 apr_crypto_block_t *block = NULL; local
289 /* bypass the salt at the start of the decoded block */
293 res = apr_crypto_block_decrypt_init(&block, &blockSize, (unsigned char *)slider, key,
301 /* bypass the iv at the start of the decoded block */
307 (unsigned char *)slider, len, block);
315 res = apr_crypto_block_decrypt_finish(decrypted + decryptedlen, &tlen, block);
[all...]
/httpd/modules/debugging/
H A Dmod_dumpio.c127 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes)
139 ((block) == APR_BLOCK_READ) ? "blocking" : "nonblocking",
142 ret = ap_get_brigade(f->next, bb, mode, block, readbytes);
126 dumpio_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
H A Dmod_firehose.c265 apr_read_type_e block,
274 return ap_get_brigade(f->next, bb, mode, block, readbytes);
277 rv = ap_get_brigade(f->next, bb, mode, block, readbytes);
568 else if (!strcmp(arg1, "block")) {
573 "The parameter '%s' should be 'block' or 'nonblock'", arg1);
262 firehose_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
/httpd/modules/ssl/
H A Dssl_engine_io.c312 apr_read_type_e block; member in struct:__anon319
367 apr_read_type_e block,
398 status = apr_bucket_read(b, &str, &str_len, block);
410 /* Do not block once some data has been consumed */
411 block = APR_NONBLOCK_READ;
453 apr_read_type_e block = inctx->block; local
492 AP_MODE_READBYTES, block,
513 inctx->rc = brigade_consume(inctx->bb, block, in, &inl);
628 inctx->block
366 brigade_consume(apr_bucket_brigade *bb, apr_read_type_e block, char *c, apr_size_t *len) argument
1375 ssl_io_filter_input(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
1911 ssl_io_filter_buffer(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t bytes) argument
[all...]
/httpd/modules/loggers/
H A Dmod_logio.c181 apr_read_type_e block,
188 status = ap_get_brigade(f->next, bb, mode, block, readbytes);
178 logio_in_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
/httpd/modules/http/
H A Dhttp_filters.c235 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes)
249 return ap_get_brigade(f->next, b, mode, block, readbytes);
406 rv = ap_get_brigade(f->next, b, AP_MODE_GETLINE, block, 0);
409 if (block == APR_NONBLOCK_READ
466 rv = ap_get_brigade(f->next, b, mode, block, readbytes);
469 if (block == APR_NONBLOCK_READ
536 rv = ap_get_brigade(f->next, b, mode, block, readbytes);
539 if (block == APR_NONBLOCK_READ
1499 * return the length of the input block. When it is done reading, it will
1577 * to read past the data provided by the client, since these reads block
234 ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
[all...]
/httpd/modules/proxy/
H A Dmod_proxy_scgi.c95 apr_read_type_e block)
103 if (block == APR_NONBLOCK_READ) {
114 if (block == APR_NONBLOCK_READ) {
226 * Send a block of data, ensure, everything is sent
254 * Send SCGI header block
93 bucket_socket_ex_read(apr_bucket *a, const char **str, apr_size_t *len, apr_read_type_e block) argument

Completed in 6861 milliseconds

12