Lines Matching refs:test_ctx

101 __owur static int parse_expected_result(SSL_TEST_CTX *test_ctx, const char *value)
108 test_ctx->expected_result = ret_value;
134 __owur static int parse_client_alert(SSL_TEST_CTX *test_ctx, const char *value)
136 return parse_alert(&test_ctx->expected_client_alert, value);
139 __owur static int parse_server_alert(SSL_TEST_CTX *test_ctx, const char *value)
141 return parse_alert(&test_ctx->expected_server_alert, value);
161 __owur static int parse_protocol(SSL_TEST_CTX *test_ctx, const char *value)
164 &test_ctx->expected_protocol, value);
221 __owur static int parse_expected_servername(SSL_TEST_CTX *test_ctx,
229 test_ctx->expected_servername = ret_value;
278 __owur static int parse_session_ticket(SSL_TEST_CTX *test_ctx, const char *value)
285 test_ctx->session_ticket_expected = ret_value;
308 __owur static int parse_session_id(SSL_TEST_CTX *test_ctx, const char *value)
315 test_ctx->session_id_expected = ret_value;
333 __owur static int parse_test_method(SSL_TEST_CTX *test_ctx, const char *value)
340 test_ctx->method = ret_value;
380 __owur static int parse_handshake_mode(SSL_TEST_CTX *test_ctx, const char *value)
387 test_ctx->handshake_mode = ret_value;
408 __owur static int parse_key_update_type(SSL_TEST_CTX *test_ctx, const char *value)
415 test_ctx->key_update_type = ret_value;
541 __owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx,
544 return parse_expected_key_type(&test_ctx->expected_tmp_key_type, value);
547 __owur static int parse_expected_server_cert_type(SSL_TEST_CTX *test_ctx,
550 return parse_expected_key_type(&test_ctx->expected_server_cert_type,
554 __owur static int parse_expected_server_sign_type(SSL_TEST_CTX *test_ctx,
557 return parse_expected_key_type(&test_ctx->expected_server_sign_type,
561 __owur static int parse_expected_client_cert_type(SSL_TEST_CTX *test_ctx,
564 return parse_expected_key_type(&test_ctx->expected_client_cert_type,
568 __owur static int parse_expected_client_sign_type(SSL_TEST_CTX *test_ctx,
571 return parse_expected_key_type(&test_ctx->expected_client_sign_type,
593 __owur static int parse_expected_server_sign_hash(SSL_TEST_CTX *test_ctx,
596 return parse_expected_sign_hash(&test_ctx->expected_server_sign_hash,
600 __owur static int parse_expected_client_sign_hash(SSL_TEST_CTX *test_ctx,
603 return parse_expected_sign_hash(&test_ctx->expected_client_sign_hash,
619 __owur static int parse_expected_server_ca_names(SSL_TEST_CTX *test_ctx,
622 return parse_expected_ca_names(&test_ctx->expected_server_ca_names, value,
623 test_ctx->libctx);
625 __owur static int parse_expected_client_ca_names(SSL_TEST_CTX *test_ctx,
628 return parse_expected_ca_names(&test_ctx->expected_client_ca_names, value,
629 test_ctx->libctx);
647 int (*parse)(SSL_TEST_CTX *test_ctx, const char *value);