Home | History | Annotate | Download | only in bio

Lines Matching refs:BIO

1 /* crypto/bio/bss_file.c */
98 static int MS_CALLBACK file_write(BIO *h, const char *buf, int num);
99 static int MS_CALLBACK file_read(BIO *h, char *buf, int size);
100 static int MS_CALLBACK file_puts(BIO *h, const char *str);
101 static int MS_CALLBACK file_gets(BIO *h, char *str, int size);
102 static long MS_CALLBACK file_ctrl(BIO *h, int cmd, long arg1, void *arg2);
103 static int MS_CALLBACK file_new(BIO *h);
104 static int MS_CALLBACK file_free(BIO *data);
119 BIO *BIO_new_file(const char *filename, const char *mode)
121 BIO *ret;
145 BIO *BIO_new_fp(FILE *stream, int close_flag)
147 BIO *ret;
162 static int MS_CALLBACK file_new(BIO *bi)
171 static int MS_CALLBACK file_free(BIO *a)
190 static int MS_CALLBACK file_read(BIO *b, char *out, int outl)
210 static int MS_CALLBACK file_write(BIO *b, const char *in, int inl)
230 static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
401 static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
422 static int MS_CALLBACK file_puts(BIO *bp, const char *str)