Home | History | Annotate | Download | only in bio

Lines Matching refs:BIO

1 /* crypto/bio/bf_buff.c */
62 #include <openssl/bio.h>
65 static int linebuffer_write(BIO *h, const char *buf,int num);
66 static int linebuffer_read(BIO *h, char *buf, int size);
67 static int linebuffer_puts(BIO *h, const char *str);
68 static int linebuffer_gets(BIO *h, char *str, int size);
69 static long linebuffer_ctrl(BIO *h, int cmd, long arg1, void *arg2);
70 static int linebuffer_new(BIO *h);
71 static int linebuffer_free(BIO *data);
72 static long linebuffer_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
105 static int linebuffer_new(BIO *bi)
122 static int linebuffer_free(BIO *a)
136 static int linebuffer_read(BIO *b, char *out, int outl)
148 static int linebuffer_write(BIO *b, const char *in, int inl)
266 static long linebuffer_ctrl(BIO *b, int cmd, long num, void *ptr)
268 BIO *dbio;
358 dbio=(BIO *)ptr;
373 static long linebuffer_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
387 static int linebuffer_gets(BIO *b, char *buf, int size)
393 static int linebuffer_puts(BIO *b, const char *str)