Lines Matching defs:istream
5 #include "istream-private.h"
6 #include "istream-callback.h"
9 struct istream_private istream;
31 stream->istream.eof = TRUE;
47 stream->istream.eof = TRUE;
50 stream->istream.stream_errno != 0)
66 struct istream *
70 struct istream *istream;
79 cstream->istream.iostream.destroy = i_stream_callback_destroy;
80 cstream->istream.read = i_stream_callback_read;
82 istream = i_stream_create(&cstream->istream, NULL, -1, 0);
83 istream->blocking = TRUE;
84 return istream;
87 void i_stream_callback_append(struct istream *input,
96 void i_stream_callback_append_str(struct istream *input, const char *str)
101 buffer_t *i_stream_callback_get_buffer(struct istream *input)
109 void i_stream_callback_set_error(struct istream *input, int stream_errno,