Lines Matching refs:BIO
20 static int md_write(BIO *h, char const *buf, int num);
21 static int md_read(BIO *h, char *buf, int size);
22 static int md_gets(BIO *h, char *str, int size);
23 static long md_ctrl(BIO *h, int cmd, long arg1, void *arg2);
24 static int md_new(BIO *h);
25 static int md_free(BIO *data);
26 static long md_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp);
48 static int md_new(BIO *bi) in md_new()
62 static int md_free(BIO *a) in md_free()
73 static int md_read(BIO *b, char *out, int outl) in md_read()
77 BIO *next; in md_read()
101 static int md_write(BIO *b, const char *in, int inl) in md_write()
105 BIO *next; in md_write()
131 static long md_ctrl(BIO *b, int cmd, long num, void *ptr) in md_ctrl()
137 BIO *dbio, *next; in md_ctrl()
196 static long md_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) in md_callback_ctrl()
198 BIO *next; in md_callback_ctrl()
208 static int md_gets(BIO *bp, char *buf, int size) in md_gets()