Lines Matching refs:test_ctx

101 __owur static int parse_expected_result(SSL_TEST_CTX *test_ctx, const char *value)  in parse_expected_result()  argument
108 test_ctx->expected_result = ret_value; in parse_expected_result()
134 __owur static int parse_client_alert(SSL_TEST_CTX *test_ctx, const char *value) in parse_client_alert() argument
136 return parse_alert(&test_ctx->expected_client_alert, value); in parse_client_alert()
139 __owur static int parse_server_alert(SSL_TEST_CTX *test_ctx, const char *value) in parse_server_alert() argument
141 return parse_alert(&test_ctx->expected_server_alert, value); in parse_server_alert()
161 __owur static int parse_protocol(SSL_TEST_CTX *test_ctx, const char *value) in parse_protocol() argument
164 &test_ctx->expected_protocol, value); in parse_protocol()
221 __owur static int parse_expected_servername(SSL_TEST_CTX *test_ctx, in parse_expected_servername() argument
229 test_ctx->expected_servername = ret_value; in parse_expected_servername()
278 __owur static int parse_session_ticket(SSL_TEST_CTX *test_ctx, const char *value) in parse_session_ticket() argument
285 test_ctx->session_ticket_expected = ret_value; in parse_session_ticket()
308 __owur static int parse_session_id(SSL_TEST_CTX *test_ctx, const char *value) in parse_session_id() argument
315 test_ctx->session_id_expected = ret_value; in parse_session_id()
334 __owur static int parse_test_method(SSL_TEST_CTX *test_ctx, const char *value) in parse_test_method() argument
341 test_ctx->method = ret_value; in parse_test_method()
381 __owur static int parse_handshake_mode(SSL_TEST_CTX *test_ctx, const char *value) in parse_handshake_mode() argument
388 test_ctx->handshake_mode = ret_value; in parse_handshake_mode()
409 __owur static int parse_key_update_type(SSL_TEST_CTX *test_ctx, const char *value) in parse_key_update_type() argument
416 test_ctx->key_update_type = ret_value; in parse_key_update_type()
554 __owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx, in parse_expected_tmp_key_type() argument
557 return parse_expected_key_type(&test_ctx->expected_tmp_key_type, value); in parse_expected_tmp_key_type()
560 __owur static int parse_expected_server_cert_type(SSL_TEST_CTX *test_ctx, in parse_expected_server_cert_type() argument
563 return parse_expected_key_type(&test_ctx->expected_server_cert_type, in parse_expected_server_cert_type()
567 __owur static int parse_expected_server_sign_type(SSL_TEST_CTX *test_ctx, in parse_expected_server_sign_type() argument
570 return parse_expected_key_type(&test_ctx->expected_server_sign_type, in parse_expected_server_sign_type()
574 __owur static int parse_expected_client_cert_type(SSL_TEST_CTX *test_ctx, in parse_expected_client_cert_type() argument
577 return parse_expected_key_type(&test_ctx->expected_client_cert_type, in parse_expected_client_cert_type()
581 __owur static int parse_expected_client_sign_type(SSL_TEST_CTX *test_ctx, in parse_expected_client_sign_type() argument
584 return parse_expected_key_type(&test_ctx->expected_client_sign_type, in parse_expected_client_sign_type()
606 __owur static int parse_expected_server_sign_hash(SSL_TEST_CTX *test_ctx, in parse_expected_server_sign_hash() argument
609 return parse_expected_sign_hash(&test_ctx->expected_server_sign_hash, in parse_expected_server_sign_hash()
613 __owur static int parse_expected_client_sign_hash(SSL_TEST_CTX *test_ctx, in parse_expected_client_sign_hash() argument
616 return parse_expected_sign_hash(&test_ctx->expected_client_sign_hash, in parse_expected_client_sign_hash()
632 __owur static int parse_expected_server_ca_names(SSL_TEST_CTX *test_ctx, in parse_expected_server_ca_names() argument
635 return parse_expected_ca_names(&test_ctx->expected_server_ca_names, value, in parse_expected_server_ca_names()
636 test_ctx->libctx); in parse_expected_server_ca_names()
638 __owur static int parse_expected_client_ca_names(SSL_TEST_CTX *test_ctx, in parse_expected_client_ca_names() argument
641 return parse_expected_ca_names(&test_ctx->expected_client_ca_names, value, in parse_expected_client_ca_names()
642 test_ctx->libctx); in parse_expected_client_ca_names()
663 int (*parse)(SSL_TEST_CTX *test_ctx, const char *value);