Searched refs:BIO_CB_READ (Results 1 – 10 of 10) sorted by relevance
/freebsd/crypto/openssl/test/ |
H A D | bio_callback_test.c | 86 || !TEST_int_eq(my_param_oper[0], BIO_CB_READ) in test_bio_callback_ex() 92 || !TEST_int_eq(my_param_oper[1], BIO_CB_READ | BIO_CB_RETURN) in test_bio_callback_ex() 106 || !TEST_int_eq(my_param_oper[0], BIO_CB_READ) in test_bio_callback_ex() 112 || !TEST_int_eq(my_param_oper[1], BIO_CB_READ | BIO_CB_RETURN) in test_bio_callback_ex() 143 || !TEST_int_eq(my_param_oper[0], BIO_CB_READ) in test_bio_callback_ex() 149 || !TEST_int_eq(my_param_oper[1], BIO_CB_READ | BIO_CB_RETURN) in test_bio_callback_ex() 257 || !TEST_int_eq(my_param_oper[0], BIO_CB_READ) in test_bio_callback() 263 || !TEST_int_eq(my_param_oper[1], BIO_CB_READ | BIO_CB_RETURN) in test_bio_callback() 276 || !TEST_int_eq(my_param_oper[0], BIO_CB_READ) in test_bio_callback() 282 || !TEST_int_eq(my_param_oper[1], BIO_CB_READ | BIO_CB_RETURN) in test_bio_callback() [all …]
|
H A D | bio_memleak_test.c | 229 if ((cmd & (BIO_CB_READ | BIO_CB_RETURN)) != 0) { in BIO_error_callback()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_set_callback.pod | 79 B<oper> is BIO_CB_READ, BIO_CB_WRITE or BIO_CB_GETS. 89 data that was actually read or written. Only used for BIO_CB_READ, BIO_CB_WRITE, 126 callback_ex(b, BIO_CB_READ, data, dlen, 0, 0L, 1L, NULL) 130 callback(b, BIO_CB_READ, data, dlen, 0L, 1L) 134 callback_ex(b, BIO_CB_READ | BIO_CB_RETURN, data, dlen, 0, 0L, retvalue, 139 callback(b, BIO_CB_READ|BIO_CB_RETURN, data, dlen, 0L, retvalue)
|
/freebsd/crypto/openssl/crypto/bio/ |
H A D | bio_cb.c | 43 case BIO_CB_READ: in BIO_debug_callback_ex() 72 case BIO_CB_RETURN | BIO_CB_READ: in BIO_debug_callback_ex()
|
H A D | bio_lib.c | 22 #define HAS_LEN_OPER(o) ((o) == BIO_CB_READ || (o) == BIO_CB_WRITE \ 283 ((ret = (int)bio_call_callback(b, BIO_CB_READ, data, dlen, 0, 0L, 1L, in bio_read_intern() 298 ret = (int)bio_call_callback(b, BIO_CB_READ | BIO_CB_RETURN, data, in bio_read_intern()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | bio.h | 260 # define BIO_CB_READ 0x02 macro
|
H A D | bio.h.in | 261 # define BIO_CB_READ 0x02 macro
|
/freebsd/crypto/openssl/apps/lib/ |
H A D | s_cb.c | 438 if (cmd == (BIO_CB_READ | BIO_CB_RETURN)) { in bio_dump_callback()
|
/freebsd/crypto/openssl/apps/ |
H A D | s_server.c | 2313 case BIO_CB_READ: /* No break here */ in count_reads_callback()
|
/freebsd/contrib/unbound/util/ |
H A D | netevent.c | 3113 (oper&BIO_CB_READ)?"read":((oper&BIO_CB_WRITE)?"write":"other"), 3116 if( (oper == (BIO_CB_READ|BIO_CB_RETURN) && argl == 0) ||
|