|
long | BIO_callback_ctrl (BIO *bio, int cmd, bio_info_cb fp) |
|
void | BIO_clear_flags (BIO *bio, int flags) |
|
void | BIO_clear_retry_flags (BIO *bio) |
|
void | BIO_copy_next_retry (BIO *bio) |
|
long | BIO_ctrl (BIO *bio, int cmd, long larg, void *parg) |
|
size_t | BIO_ctrl_pending (const BIO *bio) |
|
int | BIO_eof (BIO *bio) |
|
BIO * | BIO_find_type (BIO *bio, int type) |
|
int | BIO_flush (BIO *bio) |
|
int | BIO_free (BIO *bio) |
|
void | BIO_free_all (BIO *bio) |
|
void * | BIO_get_data (BIO *bio) |
|
int | BIO_get_init (BIO *bio) |
|
int | BIO_get_new_index (void) |
|
int | BIO_get_retry_flags (BIO *bio) |
|
int | BIO_get_retry_reason (const BIO *bio) |
|
int | BIO_get_shutdown (BIO *bio) |
|
int | BIO_gets (BIO *bio, char *buf, int len) |
|
int | BIO_indent (BIO *bio, unsigned indent, unsigned max_indent) |
|
long | BIO_int_ctrl (BIO *b, int cmd, long larg, int iarg) |
|
void | BIO_meth_free (BIO_METHOD *method) |
|
BIO_METHOD * | BIO_meth_new (int type, const char *name) |
|
int | BIO_meth_set_create (BIO_METHOD *method, int(*create)(BIO *)) |
|
int | BIO_meth_set_ctrl (BIO_METHOD *method, long(*ctrl)(BIO *, int, long, void *)) |
|
int | BIO_meth_set_destroy (BIO_METHOD *method, int(*destroy)(BIO *)) |
|
int | BIO_meth_set_gets (BIO_METHOD *method, int(*gets)(BIO *, char *, int)) |
|
int | BIO_meth_set_puts (BIO_METHOD *method, int(*puts)(BIO *, const char *)) |
|
int | BIO_meth_set_read (BIO_METHOD *method, int(*read)(BIO *, char *, int)) |
|
int | BIO_meth_set_write (BIO_METHOD *method, int(*write)(BIO *, const char *, int)) |
|
int | BIO_method_type (const BIO *bio) |
|
BIO * | BIO_new (const BIO_METHOD *method) |
|
BIO * | BIO_next (BIO *bio) |
|
OPENSSL_EXPORT size_t | BIO_number_read (const BIO *bio) |
|
OPENSSL_EXPORT size_t | BIO_number_written (const BIO *bio) |
|
size_t | BIO_pending (const BIO *bio) |
|
BIO * | BIO_pop (BIO *bio) |
|
char * | BIO_ptr_ctrl (BIO *b, int cmd, long larg) |
|
BIO * | BIO_push (BIO *bio, BIO *appended_bio) |
|
int | BIO_puts (BIO *bio, const char *in) |
|
int | BIO_read (BIO *bio, void *buf, int len) |
|
static int | bio_read_all (BIO *bio, uint8_t **out, size_t *out_len, const uint8_t *prefix, size_t prefix_len, size_t max_len) |
|
int | BIO_read_asn1 (BIO *bio, uint8_t **out, size_t *out_len, size_t max_len) |
|
static int | bio_read_full (BIO *bio, uint8_t *out, int *out_eof_on_first_read, size_t len) |
|
int | BIO_reset (BIO *bio) |
|
int | BIO_set_close (BIO *bio, int close_flag) |
|
void | BIO_set_data (BIO *bio, void *ptr) |
|
void | BIO_set_flags (BIO *bio, int flags) |
|
void | BIO_set_init (BIO *bio, int init) |
|
void | BIO_set_retry_read (BIO *bio) |
|
void | BIO_set_retry_reason (BIO *bio, int reason) |
|
void | BIO_set_retry_special (BIO *bio) |
|
void | BIO_set_retry_write (BIO *bio) |
|
void | BIO_set_shutdown (BIO *bio, int shutdown) |
|
int | BIO_set_write_buffer_size (BIO *bio, int buffer_size) |
|
int | BIO_should_io_special (const BIO *bio) |
|
int | BIO_should_read (const BIO *bio) |
|
int | BIO_should_retry (const BIO *bio) |
|
int | BIO_should_write (const BIO *bio) |
|
int | BIO_test_flags (const BIO *bio, int flags) |
|
int | BIO_up_ref (BIO *bio) |
|
void | BIO_vfree (BIO *bio) |
|
size_t | BIO_wpending (const BIO *bio) |
|
int | BIO_write (BIO *bio, const void *in, int inl) |
|
int | BIO_write_all (BIO *bio, const void *data, size_t len) |
|
void | ERR_print_errors (BIO *bio) |
|
static int | print_bio (const char *str, size_t len, void *bio) |
|