Lines Matching defs:bio
58 static int watchccs_new(BIO *bio)
60 BIO_set_init(bio, 1);
64 static int watchccs_free(BIO *bio)
66 BIO_set_init(bio, 0);
70 static int watchccs_read(BIO *bio, char *out, int outl)
73 BIO *next = BIO_next(bio);
80 BIO_clear_retry_flags(bio);
84 BIO_set_retry_read(bio);
89 static int watchccs_write(BIO *bio, const char *in, int inl)
92 BIO *next = BIO_next(bio);
101 BIO_clear_retry_flags(bio);
169 if (bio == s_to_c_fbio) {
197 if (bio == s_to_c_fbio)
208 BIO_set_retry_write(bio);
213 static long watchccs_ctrl(BIO *bio, int cmd, long num, void *ptr)
216 BIO *next = BIO_next(bio);
232 static int watchccs_gets(BIO *bio, char *buf, int size)
238 static int watchccs_puts(BIO *bio, const char *str)
240 return watchccs_write(bio, str, strlen(str));