Searched defs:stream (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/filters/
H A Dmod_deflate.c396 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...]
/httpd/modules/proxy/
H A Dmod_serf.c245 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
/httpd/modules/dav/fs/
H A Drepos.c909 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 Dmod_dav.c900 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

Completed in 2525 milliseconds