Lines Matching defs:istream
4 #include "istream-private.h"
6 #include "istream-fs-file.h"
9 struct istream_private istream;
18 i_stream_destroy(&fstream->istream.parent);
25 struct istream *input;
27 if (fstream->istream.parent == NULL) {
29 i_stream_get_max_buffer_size(&stream->istream));
35 stream->istream.v_offset);
36 return i_stream_read_copy_from_parent(&stream->istream);
39 struct istream *
43 struct istream *input;
47 fstream->istream.iostream.close = i_stream_fs_file_close;
48 fstream->istream.max_buffer_size = max_buffer_size;
49 fstream->istream.read = i_stream_fs_file_read;
50 fstream->istream.stream_size_passthrough = TRUE;
52 fstream->istream.istream.blocking =
54 fstream->istream.istream.seekable =
57 input = i_stream_create(&fstream->istream, NULL, -1, 0);