Home | History | Annotate | Download | only in bio

Lines Matching full:static

67 static int nullf_write(BIO *h, const char *buf, int num);
68 static int nullf_read(BIO *h, char *buf, int size);
69 static int nullf_puts(BIO *h, const char *str);
70 static int nullf_gets(BIO *h, char *str, int size);
71 static long nullf_ctrl(BIO *h, int cmd, long arg1, void *arg2);
72 static int nullf_new(BIO *h);
73 static int nullf_free(BIO *data);
74 static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
75 static BIO_METHOD methods_nullf=
94 static int nullf_new(BIO *bi)
102 static int nullf_free(BIO *a)
111 static int nullf_read(BIO *b, char *out, int outl)
123 static int nullf_write(BIO *b, const char *in, int inl)
135 static long nullf_ctrl(BIO *b, int cmd, long num, void *ptr)
156 static long nullf_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
170 static int nullf_gets(BIO *bp, char *buf, int size)
177 static int nullf_puts(BIO *bp, const char *str)