Lines Matching defs:ret
82 BIO *ret;
83 ret = BIO_new(BIO_s_fd());
84 if (ret == NULL)
86 BIO_set_fd(ret, fd, close_flag);
87 return ret;
115 int ret = 0;
119 ret = UP_read(b->num, out, outl);
121 if (ret <= 0) {
122 if (BIO_fd_should_retry(ret))
124 else if (ret == 0)
128 return ret;
133 int ret;
135 ret = UP_write(b->num, in, inl);
137 if (ret <= 0) {
138 if (BIO_fd_should_retry(ret))
141 return ret;
146 long ret = 1;
154 ret = (long)UP_lseek(b->num, num, 0);
158 ret = (long)UP_lseek(b->num, 0, 1);
171 ret = b->num;
173 ret = -1;
176 ret = b->shutdown;
183 ret = 0;
187 ret = 1;
190 ret = (b->flags & BIO_FLAGS_IN_EOF) != 0;
193 ret = 0;
196 return ret;
201 int n, ret;
204 ret = fd_write(bp, str, n);
205 return ret;
210 int ret = 0;
222 ret = strlen(buf);
223 return ret;