Searched defs:bufsiz (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/proxy/
H A Dmod_proxy_ajp.c173 apr_size_t bufsiz = 0; local
233 bufsiz = maxsize;
234 status = ajp_alloc_data_msg(r->pool, &buff, &bufsiz, &msg);
273 " at %" APR_SIZE_T_FMT ")", bufsiz, msg->pos);
275 status = apr_brigade_flatten(input_brigade, buff, &bufsiz);
287 "got %" APR_SIZE_T_FMT " bytes of data", bufsiz);
288 if (bufsiz > 0) {
289 status = ajp_send_data_msg(conn->sock, msg, bufsiz);
305 conn->worker->s->transferred += bufsiz;
375 bufsiz
[all...]
/httpd/modules/http/
H A Dhttp_filters.c1582 apr_size_t bufsiz)
1598 APR_BLOCK_READ, bufsiz);
1661 rv = apr_brigade_flatten(bb, buffer, &bufsiz);
1668 r->read_length += bufsiz;
1671 return bufsiz;
1581 ap_get_client_block(request_rec *r, char *buffer, apr_size_t bufsiz) argument
/httpd/modules/lua/
H A Dmod_lua.c865 size_t bufsiz)
870 apr_status_t rc = (cfg->getstr) (buf, bufsiz, cfg->param);
882 while (i < bufsiz) {
864 config_getstr(ap_configfile_t *cfg, char *buf, size_t bufsiz) argument
/httpd/server/
H A Dconfig.c1706 static apr_status_t arr_elts_getstr(void *buf, apr_size_t bufsiz, void *param) argument
1717 if (apr_cpystrn(buf, elt, bufsiz) - (char *)buf >= bufsiz - 1)
H A Dutil.c845 static apr_status_t cfg_getstr(void *buf, apr_size_t bufsiz, void *param) argument
847 return apr_file_gets(buf, bufsiz, param);

Completed in 31 milliseconds