#include <openssl/bio.h>
#include <assert.h>
#include <string.h>
#include <openssl/err.h>
#include <openssl/mem.h>
#include "../internal.h"
Go to the source code of this file.
|
static long | bio_ctrl (BIO *bio, int cmd, long num, void *ptr) |
|
size_t | BIO_ctrl_get_read_request (BIO *bio) |
|
size_t | BIO_ctrl_get_write_guarantee (BIO *bio) |
|
static void | bio_destroy_pair (BIO *bio) |
|
static int | bio_free (BIO *bio) |
|
static int | bio_make_pair (BIO *bio1, BIO *bio2, size_t writebuf1_len, size_t writebuf2_len) |
|
static int | bio_new (BIO *bio) |
|
int | BIO_new_bio_pair (BIO **bio1_p, size_t writebuf1_len, BIO **bio2_p, size_t writebuf2_len) |
|
static int | bio_read (BIO *bio, char *buf, int size_) |
|
static const BIO_METHOD * | bio_s_bio (void) |
|
int | BIO_shutdown_wr (BIO *bio) |
|
static int | bio_write (BIO *bio, const char *buf, int num_) |
|
◆ bio_ctrl()
◆ BIO_ctrl_get_read_request()
size_t BIO_ctrl_get_read_request |
( |
BIO * |
bio | ) |
|
◆ BIO_ctrl_get_write_guarantee()
size_t BIO_ctrl_get_write_guarantee |
( |
BIO * |
bio | ) |
|
◆ bio_destroy_pair()
static void bio_destroy_pair |
( |
BIO * |
bio | ) |
|
|
static |
◆ bio_free()
static int bio_free |
( |
BIO * |
bio | ) |
|
|
static |
◆ bio_make_pair()
static int bio_make_pair |
( |
BIO * |
bio1, |
|
|
BIO * |
bio2, |
|
|
size_t |
writebuf1_len, |
|
|
size_t |
writebuf2_len |
|
) |
| |
|
static |
◆ bio_new()
static int bio_new |
( |
BIO * |
bio | ) |
|
|
static |
◆ BIO_new_bio_pair()
int BIO_new_bio_pair |
( |
BIO ** |
bio1_p, |
|
|
size_t |
writebuf1_len, |
|
|
BIO ** |
bio2_p, |
|
|
size_t |
writebuf2_len |
|
) |
| |
◆ bio_read()
static int bio_read |
( |
BIO * |
bio, |
|
|
char * |
buf, |
|
|
int |
size_ |
|
) |
| |
|
static |
◆ bio_s_bio()
◆ BIO_shutdown_wr()
int BIO_shutdown_wr |
( |
BIO * |
bio | ) |
|
◆ bio_write()
◆ methods_biop
Initial value:
Definition at line 448 of file pair.c.