Home | History | Annotate | Download | only in bio

Lines Matching refs:bio

1 /* crypto/bio/bss_mem.c */
62 #include <openssl/bio.h>
64 static int mem_write(BIO *h, const char *buf, int num);
65 static int mem_read(BIO *h, char *buf, int size);
66 static int mem_puts(BIO *h, const char *str);
67 static int mem_gets(BIO *h, char *str, int size);
68 static long mem_ctrl(BIO *h, int cmd, long arg1, void *arg2);
69 static int mem_new(BIO *h);
70 static int mem_free(BIO *data);
85 /* bio->num is used to hold the value to return on 'empty', if it is
93 BIO *BIO_new_mem_buf(void *buf, int len)
95 BIO *ret;
115 static int mem_new(BIO *bi)
128 static int mem_free(BIO *a)
145 static int mem_read(BIO *b, char *out, int outl)
169 static int mem_write(BIO *b, const char *in, int inl)
197 static long mem_ctrl(BIO *b, int cmd, long num, void *ptr)
274 static int mem_gets(BIO *bp, char *buf, int size)
310 static int mem_puts(BIO *bp, const char *str)