Home
last modified time | relevance | path

Searched refs:BIO_CB_CTRL (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/bio/
HDbio_cb.c116 case BIO_CB_CTRL: in BIO_debug_callback()
132 case BIO_CB_RETURN | BIO_CB_CTRL: in BIO_debug_callback()
HDbio_lib.c356 ((ret = cb(b, BIO_CB_CTRL, parg, cmd, larg, 1L)) <= 0)) in BIO_ctrl()
362 ret = cb(b, BIO_CB_CTRL | BIO_CB_RETURN, parg, cmd, larg, ret); in BIO_ctrl()
384 ((ret = cb(b, BIO_CB_CTRL, (void *)&fp, cmd, 0, 1L)) <= 0)) in BIO_callback_ctrl()
390 ret = cb(b, BIO_CB_CTRL | BIO_CB_RETURN, (void *)&fp, cmd, 0, ret); in BIO_callback_ctrl()
HDbio.h287 # define BIO_CB_CTRL 0x06 macro
/freebsd-11-stable/crypto/openssl/crypto/evp/
HDbio_enc.c427 (b->callback(b, BIO_CB_CTRL, (const char *)c, BIO_CTRL_SET, e, 0L) <= in BIO_set_cipher()
436 b->callback(b, BIO_CB_CTRL, (const char *)c, BIO_CTRL_SET, e, 1L); in BIO_set_cipher()
/freebsd-11-stable/crypto/openssl/doc/crypto/
HDBIO_set_callback.pod96 callback(b,BIO_CB_CTRL,parg,cmd,larg,1L) is called before the call and
97 callback(b,BIO_CB_CTRL|BIO_CB_RETURN,parg,cmd, larg,ret) after.