/httpd/modules/debugging/ |
H A D | mod_dumpio.c | 117 #define whichmode( mode ) \ 118 ( (( mode ) == AP_MODE_READBYTES) ? "readbytes" : \ 119 (( mode ) == AP_MODE_GETLINE) ? "getline" : \ 120 (( mode ) == AP_MODE_EATCRLF) ? "eatcrlf" : \ 121 (( mode ) == AP_MODE_SPECULATIVE) ? "speculative" : \ 122 (( mode ) == AP_MODE_EXHAUSTIVE) ? "exhaustive" : \ 123 (( mode ) == AP_MODE_INIT) ? "init" : "unknown" \ 127 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) 138 whichmode(mode), 142 ret = ap_get_brigade(f->next, bb, mode, bloc 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 [all...] |
H A D | mod_firehose.c | 264 ap_input_mode_t mode, 273 if (mode != AP_MODE_READBYTES && mode != AP_MODE_GETLINE) { 274 return ap_get_brigade(f->next, bb, mode, block, readbytes); 277 rv = ap_get_brigade(f->next, bb, mode, block, readbytes); 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/server/ |
H A D | apreq_param.c | 216 apreq_join_t mode) 228 return apreq_join(p, ", ", arr, mode); 213 apreq_params_as_string(apr_pool_t *p, const apr_table_t *t, const char *key, apreq_join_t mode) argument
|
H A D | apreq_util.c | 601 apreq_join_t mode) 620 switch (mode) { 639 switch (mode) { 598 apreq_join(apr_pool_t *p, const char *sep, const apr_array_header_t *arr, apreq_join_t mode) argument
|
H A D | core_filters.c | 94 ap_input_mode_t mode, apr_read_type_e block, 103 if (mode == AP_MODE_INIT) { 105 * this mode is for filters that might need to 'initialize' 109 * such filters would have changed the mode before this point 144 if (mode == AP_MODE_GETLINE) { 157 /* ### AP_MODE_PEEK is a horrific name for this mode because we also 159 * this mode. Determine whether anyone actually uses this or not. */ 160 if (mode == AP_MODE_EATCRLF) { 202 /* If mode is EXHAUSTIVE, we want to just read everything until the end 212 if (mode 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 [all...] |
/httpd/modules/apreq/ |
H A D | filter.c | 330 ap_input_mode_t mode, 339 switch (mode) { 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/filters/ |
H A D | mod_buffer.c | 190 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); 210 if (mode != AP_MODE_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 D | mod_request.c | 66 ap_input_mode_t mode, 86 return ap_get_brigade(f->next, b, mode, block, readbytes); 128 rv = ap_get_brigade(f->next, b, mode, block, readbytes); 202 ap_input_mode_t mode, 213 if (!kept_body || (mode != AP_MODE_READBYTES && mode != AP_MODE_GETLINE)) { 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 D | mod_sed.c | 374 ap_input_mode_t mode, 385 if (mode != AP_MODE_READBYTES) { 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 D | mod_xml2enc.c | 84 unsigned int mode) 89 unsigned int flags = (mode ^ ENCIO); 90 if ((mode & ENCIO) == ENCIO_OUTPUT) { 94 else if ((mode & ENCIO) == ENCIO_INPUT) { 98 else if ((mode & ENCIO) == ENCIO_INPUT_CHECKS) { 105 "xml2enc: bad mode %x", mode); 83 xml2enc_filter(request_rec* r, const char* enc, unsigned int mode) argument
|
H A D | mod_ext_filter.c | 45 enum {INPUT_FILTER=1, OUTPUT_FILTER} mode; member in struct:ef_filter_t 232 filter->mode = OUTPUT_FILTER; 258 if (!strncasecmp(args, "mode=", 5)) { 262 filter->mode = OUTPUT_FILTER; 265 filter->mode = INPUT_FILTER; 268 return apr_psprintf(cmd->pool, "Invalid mode: `%s'", 321 if (filter->mode == OUTPUT_FILTER) { 325 else if (filter->mode == INPUT_FILTER) { 577 if (ctx->filter->mode == INPUT_FILTER) { 888 ap_input_mode_t mode, apr_read_type_ 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 [all...] |
H A D | mod_reqtimeout.c | 170 ap_input_mode_t mode, 183 return ap_get_brigade(f->next, bb, mode, block, readbytes); 186 if (block == APR_NONBLOCK_READ && mode == AP_MODE_SPECULATIVE) { 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 220 || mode == AP_MODE_EATCRLF) { 221 rv = ap_get_brigade(f->next, bb, mode, block, readbytes); 234 if (mode == AP_MODE_GETLINE) { 312 /* mode ! 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 [all...] |
H A D | mod_charset_lite.c | 975 ap_input_mode_t mode, apr_read_type_e block, 1033 return ap_get_brigade(f->next, bb, mode, block, readbytes); 1037 if ((rv = ap_get_brigade(f->next, bb, mode, block, 974 xlate_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 D | mod_deflate.c | 1112 ap_input_mode_t mode, 1126 if (mode != AP_MODE_READBYTES) { 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); 1238 return ap_get_brigade(f->next, bb, mode, block, readbytes); 1255 rv = ap_get_brigade(f->next, ctx->bb, mode, block, readbytes); 1258 * non-blocking mode), just return focus. 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
|
/httpd/modules/loggers/ |
H A D | mod_logio.c | 180 ap_input_mode_t mode, 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/mappers/ |
H A D | mod_vhost_alias.c | 123 mva_mode_e mode, *pmode; local 131 mode = VHOST_ALIAS_IP; 136 mode = VHOST_ALIAS_IP; 141 mode = VHOST_ALIAS_NAME; 146 mode = VHOST_ALIAS_NAME; 211 *pmode = mode; 386 mva_mode_e mode; local 399 mode = conf->cgi_root_mode; 404 mode = conf->doc_root_mode; 412 if (mode [all...] |
/httpd/modules/ssl/ |
H A D | ssl_util.c | 211 static void ssl_util_thr_lock(int mode, int type, argument 215 if (mode & CRYPTO_LOCK) { 275 static void ssl_dyn_lock_function(int mode, struct CRYPTO_dynlock_value *l, argument 280 if (mode & CRYPTO_LOCK) {
|
H A D | ssl_ct_util.c | 109 apr_status_t ctutil_fopen(const char *fn, const char *mode, FILE **f) argument 113 *f = fopen(fn, mode);
|
H A D | ssl_engine_config.c | 735 return "Setting Compression mode unsupported; not implemented by the SSL library"; 980 ssl_crlcheck_t *mode) 983 *mode = SSL_CRLCHECK_NONE; 986 *mode = SSL_CRLCHECK_LEAF; 989 *mode = SSL_CRLCHECK_CHAIN; 1040 ssl_verify_t mode; local 1043 if ((err = ssl_cmd_verify_parse(cmd, arg, &mode))) { 1048 dc->nVerifyClient = mode; 1051 sc->server->auth.verify_mode = mode; 1105 /* The OpenSSL session cache mode mus 978 ssl_cmd_crlcheck_parse(cmd_parms *parms, const char *arg, ssl_crlcheck_t *mode) argument 1413 ssl_verify_t mode; local [all...] |
H A D | ssl_engine_io.c | 311 ap_input_mode_t mode; member in struct:__anon319 604 if (inctx->mode == AP_MODE_SPECULATIVE) { 620 if (inctx->mode == AP_MODE_GETLINE) { 650 if (inctx->mode == AP_MODE_SPECULATIVE) { 1103 /* Perform the SSL handshake (whether in client or server mode), if 1377 ap_input_mode_t mode, 1385 int is_init = (mode == AP_MODE_INIT); 1405 return ap_get_brigade(f->next, bb, mode, block, readbytes); 1409 if (mode != AP_MODE_READBYTES && mode ! 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/support/ |
H A D | htpasswd.c | 128 static int accessible(apr_pool_t *pool, char *fname, int mode) argument 132 if (apr_file_open(&f, fname, mode, APR_OS_DEFAULT, pool) != APR_SUCCESS) {
|
/httpd/modules/arch/unix/ |
H A D | mod_privileges.c | 52 priv_mode mode; member in struct:__anon74 56 priv_mode mode; member in struct:__anon75 72 /* inherit the mode if it's not set; the rest won't be inherited */ 76 ret->mode = (add->mode == PRIV_UNSET) ? base->mode : add->mode; 87 /* By default, run in secure vhost mode. 106 cfg->mode = PRIV_UNSET; 119 cfg->mode 491 priv_mode mode = PRIV_UNSET; local [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 1469 const char *mode) 1528 if (mode) { 1529 if (0 == strcasecmp("NONE", mode)) { 1532 else if (0 == strcasecmp("SSL", mode)) { 1535 else if (0 == strcasecmp("TLS", mode) || 0 == strcasecmp("STARTTLS", mode)) { 1539 return "Invalid LDAP connection mode setting: must be one of NONE, " 1560 "attrib: %s, scope: %s, filter: %s, connection mode: %s", 1466 mod_auth_ldap_parse_url(cmd_parms *cmd, void *config, const char *url, const char *mode) argument
|
/httpd/modules/http/ |
H A D | http_filters.c | 235 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) 248 if (mode != AP_MODE_READBYTES && mode != AP_MODE_GETLINE) { 249 return ap_get_brigade(f->next, b, mode, block, readbytes); 466 rv = ap_get_brigade(f->next, b, mode, block, readbytes); 536 rv = ap_get_brigade(f->next, b, mode, block, readbytes); 1206 * the response into HTTP/1.0 mode. 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
|
/httpd/modules/dav/fs/ |
H A D | repos.c | 908 dav_stream_mode mode, 916 switch (mode) { 934 if (mode == DAV_MODE_WRITE_TRUNC) { 941 else if (mode == DAV_MODE_WRITE_SEEKABLE) { 907 dav_fs_open_stream(const dav_resource *resource, dav_stream_mode mode, dav_stream **stream) argument
|