Lines Matching refs:BIO

35 static int file_write(BIO *h, const char *buf, int num);
36 static int file_read(BIO *h, char *buf, int size);
37 static int file_puts(BIO *h, const char *str);
38 static int file_gets(BIO *h, char *str, int size);
39 static long file_ctrl(BIO *h, int cmd, long arg1, void *arg2);
40 static int file_new(BIO *h);
41 static int file_free(BIO *data);
57 BIO *BIO_new_file(const char *filename, const char *mode) in BIO_new_file()
59 BIO *ret; in BIO_new_file()
91 BIO *BIO_new_fp(FILE *stream, int close_flag) in BIO_new_fp()
93 BIO *ret; in BIO_new_fp()
109 static int file_new(BIO *bi) in file_new()
118 static int file_free(BIO *a) in file_free()
136 static int file_read(BIO *b, char *out, int outl) in file_read()
157 static int file_write(BIO *b, const char *in, int inl) in file_write()
178 static long file_ctrl(BIO *b, int cmd, long num, void *ptr) in file_ctrl()
338 static int file_gets(BIO *bp, char *buf, int size) in file_gets()
356 static int file_puts(BIO *bp, const char *str) in file_puts()
367 static int file_write(BIO *b, const char *in, int inl) in file_write()
371 static int file_read(BIO *b, char *out, int outl) in file_read()
375 static int file_puts(BIO *bp, const char *str) in file_puts()
379 static int file_gets(BIO *bp, char *buf, int size) in file_gets()
383 static long file_ctrl(BIO *b, int cmd, long num, void *ptr) in file_ctrl()
387 static int file_new(BIO *bi) in file_new()
391 static int file_free(BIO *a) in file_free()
416 BIO *BIO_new_file(const char *filename, const char *mode) in BIO_new_file()