Searched defs:eos (Results 1 - 10 of 10) sorted by relevance
/httpd/modules/http/ |
H A D | chunk_filter.c | 58 apr_bucket *eos = NULL; local 71 /* there shouldn't be anything after the eos */ 72 eos = e; 148 if (eos != NULL) { 149 APR_BUCKET_INSERT_BEFORE(eos, e); 179 if (eos && !f->ctx) { 184 APR_BUCKET_INSERT_BEFORE(eos, e); 189 if (rv != APR_SUCCESS || eos != NULL) {
|
/httpd/modules/metadata/ |
H A D | mod_remoteip.c | 231 char *eos; local 297 eos = parse_remote + strlen(parse_remote) - 1; 298 while (eos >= parse_remote && *eos == ' ') { 299 *(eos--) = '\0'; 302 if (eos < parse_remote) {
|
/httpd/server/ |
H A D | apreq_module_custom.c | 298 apr_bucket *eos = apr_bucket_eos_create(in->bucket_alloc); local 299 APR_BRIGADE_INSERT_TAIL(req->in, eos);
|
H A D | apreq_parser_multipart.c | 61 apr_bucket *eos; member in struct:mfd_ctx 253 ctx->eos = apr_bucket_eos_create(ba); 608 APR_BRIGADE_INSERT_TAIL(ctx->bb, ctx->eos); 610 APR_BUCKET_REMOVE(ctx->eos);
|
H A D | apreq_module_cgi.c | 352 apr_bucket *eos, *pipe; local 415 eos = apr_bucket_eos_create(ba); 417 APR_BRIGADE_INSERT_TAIL(req->in, eos);
|
H A D | protocol.c | 1462 int eos = 0; local 1477 eos = 1; 1536 if (ctx->data_sent == 0 && eos &&
|
/httpd/modules/filters/ |
H A D | mod_ext_filter.c | 746 apr_bucket *eos = NULL; local 756 eos = b; 778 if (eos) { 787 /* since we've seen eos and closed the child's stdin, set the proper pipe 809 if (eos) { 826 if (eos) {
|
/httpd/modules/ssl/ |
H A D | ssl_engine_io.c | 1813 int eos = 0; /* non-zero once EOS is seen */ local 1847 e != APR_BRIGADE_SENTINEL(tempb) && !eos; e = next) { 1854 eos = 1; 1877 "total of %" APR_OFF_T_FMT " bytes in buffer, eos=%d", 1878 total, eos); 1888 } while (!eos);
|
/httpd/modules/generators/ |
H A D | mod_autoindex.c | 2147 const char *eos = qstring += 2; /* for efficiency */ local 2149 while (*eos && *eos != '&' && *eos != ';') { 2150 ++eos; 2153 if (eos == qstring) { 2157 pstring = apr_pstrndup(r->pool, qstring, eos - qstring); 2169 if (*eos && *++eos) { 2170 qstring = eos; [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy_ftp.c | 221 char *buff, apr_size_t bufflen, int *eos) 232 *eos = 0; 245 if (*eos || APR_BRIGADE_EMPTY(bb)) { 251 *eos = 1; 388 int eos; local 390 if (APR_SUCCESS != (rv = ftp_string_read(ftp_ctrl, bb, response, sizeof(response), &eos))) { 409 if (APR_SUCCESS != (rv = ftp_string_read(ftp_ctrl, bb, response, sizeof(response), &eos))) { 602 int eos = 0; local 614 eos = 1; 640 if (eos) { 220 ftp_string_read(conn_rec *c, apr_bucket_brigade *bb, char *buff, apr_size_t bufflen, int *eos) argument [all...] |
Completed in 43 milliseconds