Lines Matching defs:istream
4 #include "istream-private.h"
5 #include "istream-crlf.h"
8 struct istream_private istream;
16 struct istream_private *stream = &cstream->istream;
25 stream->istream.stream_errno =
27 stream->istream.eof = stream->parent->eof;
180 static struct istream *
181 i_stream_create_crlf_full(struct istream *input, bool crlf)
186 cstream->istream.max_buffer_size = input->real_stream->max_buffer_size;
187 cstream->istream.read = crlf ? i_stream_crlf_read_crlf :
190 cstream->istream.istream.readable_fd = FALSE;
191 cstream->istream.istream.blocking = input->blocking;
192 cstream->istream.istream.seekable = FALSE;
193 return i_stream_create(&cstream->istream, input,
197 struct istream *i_stream_create_crlf(struct istream *input)
202 struct istream *i_stream_create_lf(struct istream *input)