Searched refs:ossl_property_value (Results 1 – 4 of 4) sorted by relevance
/openssl-master/test/ |
A D | property_test.c | 62 && TEST_int_eq(ossl_property_value(NULL, "fnord", 0), 0) in test_property_string() 63 && TEST_int_ne(i = ossl_property_value(NULL, "no", 0), 0) in test_property_string() 64 && TEST_int_ne(j = ossl_property_value(NULL, "yes", 0), 0) in test_property_string() 66 && TEST_int_eq(ossl_property_value(NULL, "yes", 1), j) in test_property_string() 67 && TEST_int_eq(ossl_property_value(NULL, "no", 1), i) in test_property_string() 68 && TEST_int_ne(i = ossl_property_value(NULL, "illuminati", 1), 0) in test_property_string() 69 && TEST_int_eq(j = ossl_property_value(NULL, "fnord", 1), i + 1) in test_property_string() 70 && TEST_int_eq(ossl_property_value(NULL, "fnord", 1), j) in test_property_string() 72 && TEST_int_eq(ossl_property_value(NULL, "cold", 0), 0) in test_property_string() 74 ossl_property_value(NULL, "fnord", 0))) in test_property_string()
|
/openssl-master/crypto/property/ |
A D | property_local.h | 44 OSSL_PROPERTY_IDX ossl_property_value(OSSL_LIB_CTX *ctx, const char *s,
|
A D | property_parse.c | 186 res->v.str_val = ossl_property_value(ctx, v, create); in parse_string() 219 res->v.str_val = ossl_property_value(ctx, v, create); in parse_unquoted() 566 if ((ossl_property_value(ctx, "yes", 1) != OSSL_PROPERTY_TRUE) in ossl_property_parse_init() 567 || (ossl_property_value(ctx, "no", 1) != OSSL_PROPERTY_FALSE)) in ossl_property_parse_init()
|
A D | property_string.c | 229 OSSL_PROPERTY_IDX ossl_property_value(OSSL_LIB_CTX *ctx, const char *s, in ossl_property_value() function
|
Completed in 7 milliseconds