Home
last modified time | relevance | path

Searched refs:oper (Results 1 – 8 of 8) sorted by relevance

/openssl/crypto/property/
H A Dproperty_parse.c368 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 Dproperty_query.c74 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 Dproperty_local.h23 OSSL_PROPERTY_OPER oper; member
/openssl/doc/man3/
H A DBIO_set_callback.pod14 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 Dbio_callback_test.c27 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 Dhttp_test.c106 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 Dbio_lib.c37 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 Dbio.h.in308 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,

Completed in 35 milliseconds