Searched refs:o_stream_send (Results 1 - 25 of 51) sorted by relevance

123

/dovecot/src/lib/
H A Dtest-ostream-failure-at.c25 test_assert(o_stream_send(output, test_data, sizeof(test_data)) == (int)i);
26 test_assert_idx(o_stream_send(output, test_data, sizeof(test_data)) == -1 &&
36 test_assert(o_stream_send(output, test_data, sizeof(test_data)) == TEST_DATA_LENGTH);
46 test_assert(o_stream_send(output, test_data, sizeof(test_data)) == TEST_DATA_LENGTH);
H A Dtest-iostream-temp.c17 test_assert(o_stream_send(output, "123", 3) == 3);
19 test_assert(o_stream_send(output, "4", 1) == 1);
25 test_assert(o_stream_send(output, "5", 1) == 1);
39 test_assert(o_stream_send(output, "123", 3) == 3);
41 test_assert(o_stream_send(output, "4", 1) == 1);
44 test_assert(o_stream_send(output, "5", 1) == 1);
58 test_assert(o_stream_send(output, "123", 3) == 3);
63 test_assert(o_stream_send(output, "45", 2) == 2);
104 test_assert(o_stream_send(output, "1234", 4) == 4);
119 test_assert(o_stream_send(outpu
[all...]
H A Dtest-ostream-escaped.c36 test_assert(o_stream_send(os_encode, "\x15\x00!\x00\x15\x11" "123456", 12) == 12);
H A Dostream-escaped.c24 ret = o_stream_send(estream->ostream.parent, str_data(estream->buf), str_len(estream->buf));
H A Dtest-ostream-buffer.c29 test_assert(o_stream_send(output, buf, size) > 0);
H A Dostream.h21 /* Number of bytes sent via o_stream_send*() and similar functions.
39 /* o_stream_send() writes all the data or returns failure */
158 ssize_t o_stream_send(struct ostream *stream, const void *data, size_t size);
H A Dtest-ostream-file.c36 test_assert(o_stream_send(output, buf, size) > 0);
H A Dostream-multiplex.c90 ret = o_stream_send(mstream->parent, mstream->wbuf->data,
/dovecot/src/lib-mail/
H A Dtest-ostream-dot.c33 ret = o_stream_send(output, data, size);
H A Dostream-dot.c42 ret = o_stream_send(stream->parent, ".\r\n", 3);
45 ret = o_stream_send(stream->parent, "\r\n.\r\n", 5);
/dovecot/src/log/
H A Ddoveadm-connection.c39 if (o_stream_send(conn->output,
/dovecot/src/plugins/mail-filter/
H A Dostream-ext-filter.c83 ret = o_stream_send(stream->parent, data, size);
158 ssize_t ret = o_stream_send(mstream->ext_out, str_data(str), str_len(str));
H A Distream-ext-filter.c185 ret = o_stream_send(mstream->ext_out, str_data(str), str_len(str));
/dovecot/src/imap/
H A Dimap-fetch.c433 if (o_stream_send(ctx->client->output, data, len) < 0)
662 if (o_stream_send(ctx->client->output, ")\r\n", 3) < 0)
714 if (o_stream_send(ctx->client->output, " ", 1) < 0)
718 if (o_stream_send(ctx->client->output, "BODY (", 6) < 0 ||
720 o_stream_send(ctx->client->output, ")", 1) < 0)
748 if (o_stream_send(ctx->client->output, " ", 1) < 0)
752 if (o_stream_send(ctx->client->output, "BODYSTRUCTURE (", 15) < 0 ||
754 o_stream_send(ctx->client->output, ")", 1) < 0)
779 if (o_stream_send(ctx->client->output, " ", 1) < 0)
783 if (o_stream_send(ct
[all...]
/dovecot/src/lib-compression/
H A Dostream-zlib.c47 ret = o_stream_send(zstream->ostream.parent, zstream->gz_header,
66 if (o_stream_send(output, buf, sizeof(buf)) != sizeof(buf))
96 ret = o_stream_send(zstream->ostream.parent,
H A Dtest-compression.c43 test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf));
50 test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf));
62 test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf));
H A Dostream-bzlib.c43 ret = o_stream_send(zstream->ostream.parent,
/dovecot/src/imap-urlauth/
H A Dimap-urlauth-client.c119 ret = o_stream_send(client->output,
239 ret = o_stream_send(client->ctrl_output,
/dovecot/src/lmtp/
H A Dcommands.c169 if (o_stream_send(state->mail_data_output,
/dovecot/src/anvil/
H A Dconnect-limit.c173 if (o_stream_send(output, str_data(str), str_len(str)) < 0)
H A Dpenalty.c269 if (o_stream_send(output, str_data(str), str_len(str)) < 0)
/dovecot/src/lib-http/
H A Dtest-http-transfer.c292 ret = o_stream_send(ochunked, rdata, rsize);
/dovecot/src/lib-storage/index/mbox/
H A Dmbox-save.c113 if (o_stream_send(ctx->output, "\n", 1) < 0) {
184 if (o_stream_send(ctx->output, str, len) < 0 ||
521 if (o_stream_send(ctx->output, data, size) < 0) {
555 if (o_stream_send(ctx->output, str_data(ctx->headers),
592 if (o_stream_send(ctx->output, data, i) < 0) {
601 if (o_stream_send(ctx->output, data, size) < 0) {
/dovecot/src/lib-storage/index/dbox-common/
H A Ddbox-save.c57 if (o_stream_send(ctx->dbox_output, &dbox_msg_hdr,
/dovecot/src/auth/
H A Dmech-winbind.c177 if (o_stream_send(request->winbind->out_pipe,

Completed in 31 milliseconds

123