Searched defs:buff (Results 1 - 10 of 10) sorted by relevance

/httpd/test/
H A Dtest_limits.c188 char buff[512]; local
190 while ((len = read(sd, buff, 512)) > 0)
191 len = write(1, buff, len);
/httpd/modules/echo/
H A Dmod_echo.c55 char *buff, apr_size_t bufflen)
62 *buff = '\0';
85 memcpy (buff + readbytes, str, len);
87 buff[readbytes] = '\0';
54 brigade_peek(apr_bucket_brigade *bbIn, char *buff, apr_size_t bufflen) argument
/httpd/server/
H A Dutil_pcre.c195 AP_DECLARE(int) ap_regexec_len(const ap_regex_t *preg, const char *buff, argument
224 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, buff, (int)len,
H A Dprotocol.c1713 char *buff; member in struct:ap_vrprintf_data
1717 static int r_flush(apr_vformatter_buff_t *buff) argument
1720 * vformatter needs to write into buff and buff.curpos > buff.endpos */
1724 struct ap_vrprintf_data *vd = (struct ap_vrprintf_data*)buff;
1730 if (buffer_output(vd->r, vd->buff, AP_IOBUFSIZE)) {
1735 vd->vbuff.curpos = vd->buff;
1736 vd->vbuff.endpos = vd->buff + AP_IOBUFSIZE;
1750 vd.buff
[all...]
H A Dutil_expr_eval.c1154 char *buff, *original, *replacement; local
1167 buff = APR_ARRAY_IDX(args, 2, char *);
1172 bytes = strlen(buff);
1177 while ((repl = apr_strmatch(pattern, buff, bytes))) {
1178 len = (apr_size_t) (repl - buff);
1179 ap_varbuf_strmemcat(&vb, buff, len);
1184 buff += len;
1187 return ap_varbuf_pdup(ctx->p, &vb, NULL, 0, buff, bytes, &len);
/httpd/modules/proxy/
H A Dmod_proxy_ajp.c174 char *buff; local
234 status = ajp_alloc_data_msg(r->pool, &buff, &bufsiz, &msg);
275 status = apr_brigade_flatten(input_brigade, buff, &bufsiz);
404 status = apr_brigade_flatten(input_brigade, buff,
H A Dmod_proxy_ftp.c221 char *buff, apr_size_t bufflen, int *eos)
225 char *pos = buff;
231 buff[0] = 0;
269 /* concat strings until buff is full - then throw the data away */
270 if (len > ((bufflen-1)-(pos-buff))) {
271 len = (bufflen-1)-(pos-buff);
385 char buff[5]; local
406 memcpy(buff, response, 3);
407 buff[3] = ' ';
413 } while (memcmp(response, buff,
220 ftp_string_read(conn_rec *c, apr_bucket_brigade *bb, char *buff, apr_size_t bufflen, int *eos) argument
[all...]
/httpd/modules/filters/
H A Dmod_substitute.c115 const char *buff; local
147 if (apr_bucket_read(b, &buff, &bytes, APR_BLOCK_READ)
159 while ((repl = apr_strmatch(script->pattern, buff, bytes)))
162 /* get offset into buff for pattern */
163 len = (apr_size_t) (repl - buff);
175 ap_varbuf_strmemcat(&vb, buff, len);
204 /* now we need to adjust buff for all these changes */
207 buff += len;
215 buff, bytes, &len);
238 const char *pos = buff;
320 const char *buff; local
[all...]
/httpd/server/mpm/winnt/
H A Dchild.c94 char buff[2*PADDED_ADDR_SIZE]; member in struct:winnt_conn_ctx_t_s
463 buf = context->buff;
636 context->sa_server = (void *) context->buff;
637 context->sa_server_len = sizeof(context->buff) / 2;
639 context->sa_client = (void *) (context->buff
686 context->sa_server_len = sizeof(context->buff) / 2;
/httpd/support/
H A Dab.c1764 char *buff = xmalloc(postlen + reqlen + 1); local
1765 strcpy(buff, request);
1766 memcpy(buff + reqlen, postdata, postlen);
1767 request = buff;

Completed in 64 milliseconds