Searched refs:oper (Results 1 – 8 of 8) sorted by relevance
/openssl-master/crypto/property/ |
A D | property_parse.c | 338 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_property() 394 prop->oper = OSSL_PROPERTY_OVERRIDE; in ossl_parse_query() 405 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 407 prop->oper = OSSL_PROPERTY_OPER_NE; in ossl_parse_query() 410 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 447 OSSL_PROPERTY_OPER oper; in ossl_property_match_count() local 450 if ((oper = q[i].oper) == OSSL_PROPERTY_OVERRIDE) { in ossl_property_match_count() 480 if (oper == OSSL_PROPERTY_OPER_NE) in ossl_property_match_count() 485 || (oper == OSSL_PROPERTY_OPER_EQ in ossl_property_match_count() 487 || (oper == OSSL_PROPERTY_OPER_NE in ossl_property_match_count() [all …]
|
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()
|
A D | property_local.h | 23 OSSL_PROPERTY_OPER oper; member
|
/openssl-master/doc/man3/ |
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, 70 =item B<oper> 72 B<oper> is set to the operation being performed. For some operations 74 operation, the latter case has B<oper> or'ed with BIO_CB_RETURN. 79 B<oper> is BIO_CB_READ, BIO_CB_WRITE or BIO_CB_GETS. 84 the value of B<oper>, that is the operation being performed.
|
/openssl-master/test/ |
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()
|
A D | http_test.c | 102 static long http_bio_cb_ex(BIO *bio, int oper, const char *argp, size_t len, in http_bio_cb_ex() argument 107 if (oper == (BIO_CB_CTRL | BIO_CB_RETURN) && cmd == BIO_CTRL_FLUSH) in http_bio_cb_ex()
|
/openssl-master/crypto/bio/ |
A D | bio_lib.c | 36 static long bio_call_callback(BIO *b, int oper, const char *argp, size_t len, in bio_call_callback() argument 46 return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); in bio_call_callback() 50 bareoper = oper & ~BIO_CB_RETURN; in bio_call_callback() 64 if (inret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback() 70 ret = b->callback(b, oper, argp, argi, argl, inret); in bio_call_callback() 72 if (ret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback()
|
/openssl-master/include/openssl/ |
A D | bio.h.in | 275 typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi, 284 typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp, 289 long BIO_debug_callback_ex(BIO *bio, int oper, const char *argp, size_t len,
|
Completed in 15 milliseconds