Searched defs:cumulative_len (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/proxy/
H A Dmod_proxy_fcgi.c200 apr_size_t cumulative_len = 0; local
204 readlen = buflen - cumulative_len;
205 rv = get_data(conn, buffer + cumulative_len, &readlen);
209 cumulative_len += readlen;
210 } while (cumulative_len < buflen);
/httpd/modules/aaa/
H A Dmod_authnz_fcgi.c198 apr_size_t cumulative_len = 0; local
202 readlen = buflen - cumulative_len;
203 rv = recv_data(conf, r, s, buf + cumulative_len, &readlen);
207 cumulative_len += readlen;
208 } while (cumulative_len < buflen);

Completed in 937 milliseconds