Searched refs:oper (Results 1 – 9 of 9) sorted by relevance
/openssl/crypto/property/ |
H A D | property_parse.c | 368 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_property() 424 prop->oper = OSSL_PROPERTY_OVERRIDE; in ossl_parse_query() 435 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 437 prop->oper = OSSL_PROPERTY_OPER_NE; in ossl_parse_query() 440 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 477 OSSL_PROPERTY_OPER oper; in ossl_property_match_count() local 480 if ((oper = q[i].oper) == OSSL_PROPERTY_OVERRIDE) { in ossl_property_match_count() 510 if (oper == OSSL_PROPERTY_OPER_NE) in ossl_property_match_count() 515 || (oper == OSSL_PROPERTY_OPER_EQ in ossl_property_match_count() 517 || (oper == OSSL_PROPERTY_OPER_NE in ossl_property_match_count() [all …]
|
H A D | property_query.c | 74 if (prop == NULL || prop->optional || prop->oper == OSSL_PROPERTY_OVERRIDE) in ossl_property_is_enabled() 77 && ((prop->oper == OSSL_PROPERTY_OPER_EQ in ossl_property_is_enabled() 79 || (prop->oper == OSSL_PROPERTY_OPER_NE in ossl_property_is_enabled()
|
H A D | property_local.h | 23 OSSL_PROPERTY_OPER oper; member
|
/openssl/doc/man3/ |
H A D | BIO_set_callback.pod | 14 typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp, 24 long BIO_debug_callback_ex(BIO *bio, int oper, const char *argp, size_t len, 31 typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi, 77 =item B<oper> 79 B<oper> is set to the operation being performed. For some operations 81 operation, the latter case has B<oper> or'ed with BIO_CB_RETURN. 86 B<oper> is BIO_CB_READ, BIO_CB_WRITE or BIO_CB_GETS. 91 the value of B<oper>, that is the operation being performed.
|
/openssl/test/ |
H A D | bio_callback_test.c | 27 static long my_bio_cb_ex(BIO *b, int oper, const char *argp, size_t len, in my_bio_cb_ex() argument 33 my_param_oper[my_param_count] = oper; in my_bio_cb_ex() 202 static long my_bio_callback(BIO *b, int oper, const char *argp, int argi, in my_bio_callback() argument 208 my_param_oper[my_param_count] = oper; in my_bio_callback()
|
H A D | http_test.c | 106 static long http_bio_cb_ex(BIO *bio, int oper, const char *argp, size_t len, in http_bio_cb_ex() argument 111 if (oper == (BIO_CB_CTRL | BIO_CB_RETURN) && cmd == BIO_CTRL_FLUSH) in http_bio_cb_ex()
|
/openssl/crypto/bio/ |
H A D | bio_lib.c | 37 static long bio_call_callback(BIO *b, int oper, const char *argp, size_t len, in bio_call_callback() argument 47 return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); in bio_call_callback() 51 bareoper = oper & ~BIO_CB_RETURN; in bio_call_callback() 65 if (inret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback() 71 ret = b->callback(b, oper, argp, argi, argl, inret); in bio_call_callback() 73 if (ret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback()
|
/openssl/include/openssl/ |
H A D | bio.h.in | 308 typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi, 317 typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp, 322 long BIO_debug_callback_ex(BIO *bio, int oper, const char *argp, size_t len,
|
/openssl/ssl/ |
H A D | ssl_lib.c | 3893 static long check_keylog_bio_free(BIO *b, int oper, const char *argp, in check_keylog_bio_free() argument 3904 if (oper == BIO_CB_FREE) in check_keylog_bio_free()
|
Completed in 43 milliseconds