Lines Matching defs:ec
57 ssize_t ec;
59 ec = o_stream_send(stream->ostream.parent, data, size);
60 if (ec == (ssize_t)size)
62 else if (ec < 0) {
186 int ec = 0;
196 ec = -1;
200 if (ec != 0) {
295 int ec = 0;
300 ec = -1;
304 if (ec != 0) return ec;
427 ssize_t ec,total = 0;
436 ec = o_stream_encrypt_send_header_v1(estream);
438 ec = o_stream_encrypt_send_header_v2(estream);
440 if (ec < 0) {
658 int ec;
664 ec = o_stream_encrypt_init(estream, algorithm);
670 if (ec != 0) {
682 int ec;
686 if (!dcrypt_ctx_sym_init(estream->ctx_sym, &error)) ec = -1;
687 else ec = 0;
693 if (ec != 0) {