Lines Matching refs:buffer
865 /* Ensure we don't hit a wall where we have a buffer too small
1138 * ProxyBadHeader StartBody). This depends on buffer actually being
1140 * any sense at all, since we depend on buffer still containing
1144 char *buffer, int size,
1168 while ((len = ap_getline(buffer, size, rr, 1)) > 0) {
1169 ap_log_rerror(APLOG_MARK, APLOG_TRACE4, 0, r, "%s", buffer);
1171 if (!(value = strchr(buffer, ':'))) { /* Find the colon separator */
1184 if (!apr_date_checkmask(buffer, "HTTP/#.# ###*")) {
1234 process_proxy_header(r, dconf, buffer, value);
1303 char buffer[HUGE_STRING_LEN];
1370 rc = ap_proxygetline(tmp_bb, buffer, sizeof(buffer), backend->r, 0, &len);
1373 rc = ap_proxygetline(tmp_bb, buffer, sizeof(buffer), backend->r, 0, &len);
1436 if (apr_date_checkmask(buffer, "HTTP/#.# ###*")) {
1440 major = buffer[5] - '0';
1441 minor = buffer[7] - '0';
1446 if ((major != 1) || (len >= sizeof(buffer)-1)) {
1450 "server: ", buffer, NULL));
1454 keepchar = buffer[12];
1455 buffer[12] = '\0';
1456 proxy_status = atoi(&buffer[9]);
1458 apr_pstrdup(r->pool, &buffer[9]));
1461 buffer[12] = keepchar;
1466 buffer[12] = ' ';
1467 buffer[13] = '\0';
1469 proxy_status_line = apr_pstrdup(p, &buffer[9]);
1490 ap_proxy_read_headers(r, backend->r, buffer, sizeof(buffer), origin,
1687 * decide on the conversion of this buffer full of data.
1690 * the best guess IMHO is to always treat the buffer as "text/x":
1692 ap_xlate_proto_to_ascii(buffer, len);
1695 e = apr_bucket_heap_create(buffer, cntr, NULL, c->bucket_alloc);