|
BIO * | BIO_new (const BIO_METHOD *method) |
|
int | BIO_free (BIO *bio) |
|
int | BIO_up_ref (BIO *bio) |
|
void | BIO_vfree (BIO *bio) |
|
void | BIO_free_all (BIO *bio) |
|
int | BIO_read (BIO *bio, void *buf, int len) |
|
int | BIO_gets (BIO *bio, char *buf, int len) |
|
int | BIO_write (BIO *bio, const void *in, int inl) |
|
int | BIO_puts (BIO *bio, const char *in) |
|
int | BIO_flush (BIO *bio) |
|
long | BIO_ctrl (BIO *bio, int cmd, long larg, void *parg) |
|
char * | BIO_ptr_ctrl (BIO *b, int cmd, long larg) |
|
long | BIO_int_ctrl (BIO *b, int cmd, long larg, int iarg) |
|
int | BIO_reset (BIO *bio) |
|
int | BIO_eof (BIO *bio) |
|
void | BIO_set_flags (BIO *bio, int flags) |
|
int | BIO_test_flags (const BIO *bio, int flags) |
|
int | BIO_should_read (const BIO *bio) |
|
int | BIO_should_write (const BIO *bio) |
|
int | BIO_should_retry (const BIO *bio) |
|
int | BIO_should_io_special (const BIO *bio) |
|
int | BIO_get_retry_reason (const BIO *bio) |
|
void | BIO_clear_flags (BIO *bio, int flags) |
|
void | BIO_set_retry_read (BIO *bio) |
|
void | BIO_set_retry_write (BIO *bio) |
|
int | BIO_get_retry_flags (BIO *bio) |
|
void | BIO_clear_retry_flags (BIO *bio) |
|
int | BIO_method_type (const BIO *bio) |
|
void | BIO_copy_next_retry (BIO *bio) |
|
long | BIO_callback_ctrl (BIO *bio, int cmd, bio_info_cb fp) |
|
size_t | BIO_pending (const BIO *bio) |
|
size_t | BIO_ctrl_pending (const BIO *bio) |
|
size_t | BIO_wpending (const BIO *bio) |
|
int | BIO_set_close (BIO *bio, int close_flag) |
|
void | BIO_set_callback (BIO *bio, bio_info_cb callback_func) |
|
void | BIO_set_callback_arg (BIO *bio, char *arg) |
|
char * | BIO_get_callback_arg (const BIO *bio) |
|
OPENSSL_EXPORT size_t | BIO_number_read (const BIO *bio) |
|
OPENSSL_EXPORT size_t | BIO_number_written (const BIO *bio) |
|
BIO * | BIO_push (BIO *bio, BIO *appended_bio) |
|
BIO * | BIO_pop (BIO *bio) |
|
BIO * | BIO_next (BIO *bio) |
|
BIO * | BIO_find_type (BIO *bio, int type) |
|
int | BIO_indent (BIO *bio, unsigned indent, unsigned max_indent) |
|
void | BIO_print_errors (BIO *bio) |
|
void | ERR_print_errors (BIO *bio) |
|
int | BIO_read_asn1 (BIO *bio, uint8_t **out, size_t *out_len, size_t max_len) |
|