/httpd/test/ |
H A D | test_limits.c | 188 char buff[512]; local 190 while ((len = read(sd, buff, 512)) > 0) 191 len = write(1, buff, len);
|
/httpd/modules/echo/ |
H A D | mod_echo.c | 55 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 D | util_pcre.c | 195 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 D | protocol.c | 1713 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 D | util_expr_eval.c | 1154 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 D | mod_proxy_ajp.c | 174 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 D | mod_proxy_ftp.c | 221 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 D | mod_substitute.c | 115 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 D | child.c | 94 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 D | ab.c | 1764 char *buff = xmalloc(postlen + reqlen + 1); local 1765 strcpy(buff, request); 1766 memcpy(buff + reqlen, postdata, postlen); 1767 request = buff;
|