• Home
  • Raw
  • Download

Lines Matching defs:bio

73 static int bio_set(BIO *bio, const BIO_METHOD *method) {  in bio_set()
105 int BIO_free(BIO *bio) { in BIO_free()
131 BIO *BIO_up_ref(BIO *bio) { in BIO_up_ref()
136 void BIO_vfree(BIO *bio) { in BIO_vfree()
140 void BIO_free_all(BIO *bio) { in BIO_free_all()
144 static int bio_io(BIO *bio, void *buf, int len, size_t method_offset, in bio_io()
189 int BIO_read(BIO *bio, void *buf, int len) { in BIO_read()
194 int BIO_gets(BIO *bio, char *buf, int len) { in BIO_gets()
199 int BIO_write(BIO *bio, const void *in, int inl) { in BIO_write()
204 int BIO_puts(BIO *bio, const char *in) { in BIO_puts()
208 int BIO_flush(BIO *bio) { in BIO_flush()
212 long BIO_ctrl(BIO *bio, int cmd, long larg, void *parg) { in BIO_ctrl()
256 int BIO_reset(BIO *bio) { in BIO_reset()
260 void BIO_set_flags(BIO *bio, int flags) { in BIO_set_flags()
264 int BIO_test_flags(const BIO *bio, int flags) { in BIO_test_flags()
268 int BIO_should_read(const BIO *bio) { in BIO_should_read()
272 int BIO_should_write(const BIO *bio) { in BIO_should_write()
276 int BIO_should_retry(const BIO *bio) { in BIO_should_retry()
280 int BIO_should_io_special(const BIO *bio) { in BIO_should_io_special()
284 int BIO_get_retry_reason(const BIO *bio) { return bio->retry_reason; } in BIO_get_retry_reason()
286 void BIO_clear_flags(BIO *bio, int flags) { in BIO_clear_flags()
290 void BIO_set_retry_read(BIO *bio) { in BIO_set_retry_read()
294 void BIO_set_retry_write(BIO *bio) { in BIO_set_retry_write()
300 int BIO_get_retry_flags(BIO *bio) { in BIO_get_retry_flags()
304 void BIO_clear_retry_flags(BIO *bio) { in BIO_clear_retry_flags()
309 int BIO_method_type(const BIO *bio) { return bio->method->type; } in BIO_method_type()
311 void BIO_copy_next_retry(BIO *bio) { in BIO_copy_next_retry()
317 long BIO_callback_ctrl(BIO *bio, int cmd, bio_info_cb fp) { in BIO_callback_ctrl()
348 size_t BIO_pending(const BIO *bio) { in BIO_pending()
352 size_t BIO_ctrl_pending(const BIO *bio) { in BIO_ctrl_pending()
356 size_t BIO_wpending(const BIO *bio) { in BIO_wpending()
360 int BIO_set_close(BIO *bio, int close_flag) { in BIO_set_close()
364 void BIO_set_callback(BIO *bio, bio_info_cb callback_func) { in BIO_set_callback()
368 void BIO_set_callback_arg(BIO *bio, char *arg) { in BIO_set_callback_arg()
372 char *BIO_get_callback_arg(const BIO *bio) { in BIO_get_callback_arg()
376 OPENSSL_EXPORT size_t BIO_number_read(const BIO *bio) { in BIO_number_read()
380 OPENSSL_EXPORT size_t BIO_number_written(const BIO *bio) { in BIO_number_written()
384 BIO *BIO_push(BIO *bio, BIO *appended_bio) { in BIO_push()
400 BIO *BIO_pop(BIO *bio) { in BIO_pop()
411 BIO *BIO_next(BIO *bio) { in BIO_next()
418 BIO *BIO_find_type(BIO *bio, int type) { in BIO_find_type()
444 int BIO_indent(BIO *bio, unsigned indent, unsigned max_indent) { in BIO_indent()
457 static int print_bio(const char *str, size_t len, void *bio) { in print_bio()
461 void BIO_print_errors(BIO *bio) { in BIO_print_errors()
465 void ERR_print_errors(BIO *bio) { in ERR_print_errors()
477 static int bio_read_all(BIO *bio, uint8_t **out, size_t *out_len, in bio_read_all()
528 int BIO_read_asn1(BIO *bio, uint8_t **out, size_t *out_len, size_t max_len) { in BIO_read_asn1()