Searched refs:ap_get_client_block (Results 1 - 6 of 6) sorted by relevance
| /httpd/include/ |
| H A D | http_protocol.h | 503 AP_DECLARE(long) ap_get_client_block(request_rec *r, char *buffer, apr_size_t bufsiz);
|
| /httpd/modules/proxy/ |
| H A D | mod_proxy_scgi.c | 339 readlen = ap_get_client_block(r, buf, AP_IOBUFSIZE); 345 readlen = ap_get_client_block(r, buf, AP_IOBUFSIZE);
|
| H A D | mod_serf.c | 542 /* FIXME: ap_get_client_block() returns long, not apr_status_t */ 543 rv = ap_get_client_block(baton->r, buf, len);
|
| /httpd/modules/arch/win32/ |
| H A D | mod_isapi.c | 603 ((res = ap_get_client_block(r, (char*)buf_data + read, 893 while (ap_get_client_block(r, argsbuffer, HUGE_STRING_LEN)); 1202 ((res = ap_get_client_block(r, (char*)buf_data + read, 1530 ((res = ap_get_client_block(r, (char*)cid->ecb->lpbData + read,
|
| /httpd/modules/http/ |
| H A D | http_filters.c | 1067 (res = ap_get_client_block(r, bodyoff, bodybuf)) > 0) { 1074 while (ap_get_client_block(r, bodyread, bodylen) > 0) 1497 * 3. Finally, call ap_get_client_block in a loop. Pass it a buffer and its size. 1581 AP_DECLARE(long) ap_get_client_block(request_rec *r, char *buffer, function 1600 /* We lose the failure code here. This is why ap_get_client_block should 1649 * If so, we have to leave a nugget for the *next* ap_get_client_block
|
| /httpd/modules/lua/ |
| H A D | lua_request.c | 253 while ((len_read = ap_get_client_block(r, argsbuffer, sizeof(argsbuffer))) > 0) { 291 ap_get_client_block(r, argsbuffer,
|
Completed in 36 milliseconds