Searched defs:sent (Results 1 - 11 of 11) sorted by relevance
/dovecot/src/lib/ |
H A D | ostream-unix.c | 27 size_t sent; local 45 sent = ret; 46 fstream->real_offset += sent; 50 if (sent < iov[0].iov_len || iov_count == 1) { 52 return sent; 58 return (errno == EAGAIN || errno == EINTR ? (ssize_t)sent : ret); 59 sent += ret; 60 return sent;
|
H A D | ostream-file.c | 154 size_t size, sent; local 173 sent = 0; 187 sent += ret; 202 ret += sent; 203 } else if (!fstream->file && sent > 0) { 204 /* return what we managed to get sent */ 205 ret = sent; 495 to be sent. */ 510 size_t unused, sent; local 517 sent [all...] |
/dovecot/src/lib-mail/ |
H A D | ostream-dot.c | 81 size_t max_bytes, sent, added; local 99 sent = added = 0; 171 sent += chunk; 180 sent++; 193 sent += chunk; 207 /* all must be sent */ 208 i_assert((size_t)ret == sent + added); 210 stream->ostream.offset += sent; 211 return sent;
|
/dovecot/src/lib-ldap/ |
H A D | ldap-private.h | 71 unsigned int sent; member in struct:ldap_connection
|
/dovecot/src/lib-smtp/ |
H A D | smtp-server-command.c | 580 bool sent = FALSE; local 585 sent = reply->sent; 589 if (!sent) {
|
H A D | smtp-server-private.h | 38 are sent. */ 40 /* The reply for the command is sent */ 62 bool sent:1; member in struct:smtp_server_reply
|
H A D | smtp-client-command.c | 222 smtp_client_command_debug(cmd, "Abort (already sent)"); 234 /* it is being sent; cannot truly abort it now */ 239 /* not yet sent */ 500 ssize_t sent; local 551 if ((sent=o_stream_send(conn->conn.output, data, size)) <= 0) { 552 if (sent < 0) { 560 cmd->send_pos += sent; 575 /* everything sent. move command to wait list. */ 758 /* size must be known if stream is to be sent in chunks */ 1194 /* previous BDAT command not completely sent */ [all...] |
/dovecot/src/lib-ssl-iostream/ |
H A D | iostream-openssl.c | 365 ssize_t sent; local 395 sent = o_stream_send(ssl_io->plain_output, buffer, bytes); 396 if (sent < 0) { 407 i_assert(sent == (ssize_t)bytes);
|
/dovecot/src/auth/ |
H A D | auth-worker-client.c | 46 bool sending, sent, done; member in struct:auth_worker_list_context 205 i_error("BUG: Auth worker server sent us invalid PASSV"); 211 i_error("BUG: Auth worker server sent us invalid PASSV"); 253 i_error("BUG: Auth worker server sent us invalid PASSW"); 260 i_error("BUG: Auth worker server sent us invalid PASSW (scheme is NULL)"); 343 i_error("BUG: Auth worker server sent us invalid PASSL"); 401 i_error("BUG: Auth worker server sent us invalid SETCRED"); 485 i_error("BUG: Auth worker server sent us invalid USER"); 580 ctx->sent = TRUE; 586 ctx->sent [all...] |
/dovecot/src/doveadm/ |
H A D | client-connection-http.c | 779 bool sent; local 794 sent = FALSE; 800 if (sent) 804 sent = TRUE;
|
/dovecot/src/lib-imap-client/ |
H A D | imapc-connection.c | 67 /* Command is fully sent to server */ 68 bool sent:1; member in struct:imapc_command 115 /* commands pending in queue to be sent */ 117 /* commands that have been sent, waiting for their tagged reply */ 119 /* commands that were already sent, but were aborted since (due to 358 if (cmd->sent && conn->state == IMAPC_CONNECTION_STATE_DONE) { 578 i_error("imapc(%s): Server sent invalid input: %s", 927 t_strdup_printf("Server sent non-base64 input for AUTHENTICATE: %s", 1184 /* capabilities weren't sent in the banner. ask for them. */ 1475 /* sent comman [all...] |
Completed in 39 milliseconds