Lines Matching refs:ret
75 int ret = 0;
88 ret = BIO_read(next, out, outl);
90 if (ret > 0) {
92 (unsigned int)ret) <= 0)
98 return ret;
103 int ret = 0;
113 ret = BIO_write(next, in, inl);
116 if (ret > 0) {
118 (unsigned int)ret)) {
128 return ret;
136 long ret = 1;
146 ret = EVP_DigestInit_ex(ctx, EVP_MD_CTX_get0_md(ctx), NULL);
148 ret = 0;
149 if (ret > 0)
150 ret = BIO_ctrl(next, cmd, num, ptr);
157 ret = 0;
168 ret = 0;
172 ret = BIO_ctrl(next, cmd, num, ptr);
178 ret = EVP_DigestInit_ex(ctx, md, NULL);
179 if (ret > 0)
190 ret = BIO_ctrl(next, cmd, num, ptr);
193 return ret;
211 unsigned int ret;
218 if (EVP_DigestFinal_ex(ctx, (unsigned char *)buf, &ret) <= 0)
221 return (int)ret;