Searched refs:stream (Results 1 - 6 of 6) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_deflate.c | 396 z_stream stream; member in struct:deflate_ctx_t 439 ctx->stream.next_out = ctx->buffer; 440 ctx->stream.avail_out = c->bufferSize; 452 deflate_len = c->bufferSize - ctx->stream.avail_out; 460 zRC = libz_func(&ctx->stream, flush); 479 done = (ctx->stream.avail_out != 0 || zRC == Z_STREAM_END); 492 ctx->libz_end_func(&ctx->stream); 541 if (ctx->stream.total_in) { 542 int ratio = ctx->stream.total_out / ctx->stream [all...] |
H A D | mod_include.c | 1768 * error string is inserted into the stream. 3112 * test the stream for end_seq. If it doesn't match at all, it must be an 3419 /* Hit end of stream, time for cleanup ... But wait! 3430 * or only string within the stream). This state, however, 3731 /* End of stream. Final cleanup */
|
/httpd/modules/dav/fs/ |
H A D | repos.c | 909 dav_stream **stream) 964 *stream = ds; 968 static dav_error * dav_fs_close_stream(dav_stream *stream, int commit) argument 972 apr_file_close(stream->f); 975 if (stream->temppath) { 976 apr_pool_cleanup_run(stream->p, stream, tmpfile_cleanup); 978 else if (stream->unlink_on_error) { 979 if ((rv = apr_file_remove(stream->pathname, stream 907 dav_fs_open_stream(const dav_resource *resource, dav_stream_mode mode, dav_stream **stream) argument 1003 dav_fs_write_stream(dav_stream *stream, const void *buf, apr_size_t bufsize) argument 1023 dav_fs_seek_stream(dav_stream *stream, apr_off_t abs_pos) argument [all...] |
/httpd/modules/dav/main/ |
H A D | mod_dav.h | 649 ** inserted into the output XML stream. 1681 /* a scratch pool, used to stream responses and iteratively cleared. */ 1716 ** while fetching/storing resources. mod_dav views resources as a stream 1720 ** that created the stream in the repository's "open" function. 1814 ** Open a stream for this resource, using the specified mode. The 1815 ** stream will be returned in *stream. 1819 dav_stream **stream); 1822 ** Close the specified stream. 1832 ** commit should be TRUE (non-zero) or FALSE (0) if the stream wa [all...] |
H A D | mod_dav.c | 900 dav_stream *stream; local 973 &stream)) != NULL) { 989 err = (*resource->hooks->seek_stream)(stream, range_start); 1052 err = (*resource->hooks->write_stream)(stream, data, len); 1061 err2 = (*resource->hooks->close_stream)(stream, 1135 STATUS, and PROPSTATS) and stream it via WRES's ctx->brigade. */ 2006 /* at this point, ctx->scratchpool has been used to stream a
|
/httpd/modules/proxy/ |
H A D | mod_serf.c | 245 serf_bucket_t *stream, 256 c = serf_bucket_barrier_create(stream, bkt_alloc); 298 * copy all of the data here, and better stream it to the client. 244 accept_response(serf_request_t *request, serf_bucket_t *stream, void *acceptor_baton, apr_pool_t *pool) argument
|
Completed in 2147 milliseconds