• Home
  • Raw
  • Download

Lines Matching refs:test_ctx

105 __owur static int parse_expected_result(SSL_TEST_CTX *test_ctx, const char *value)  in parse_expected_result()  argument
112 test_ctx->expected_result = ret_value; in parse_expected_result()
137 __owur static int parse_client_alert(SSL_TEST_CTX *test_ctx, const char *value) in parse_client_alert() argument
139 return parse_alert(&test_ctx->expected_client_alert, value); in parse_client_alert()
142 __owur static int parse_server_alert(SSL_TEST_CTX *test_ctx, const char *value) in parse_server_alert() argument
144 return parse_alert(&test_ctx->expected_server_alert, value); in parse_server_alert()
164 __owur static int parse_protocol(SSL_TEST_CTX *test_ctx, const char *value) in parse_protocol() argument
167 &test_ctx->expected_protocol, value); in parse_protocol()
222 __owur static int parse_expected_servername(SSL_TEST_CTX *test_ctx, in parse_expected_servername() argument
230 test_ctx->expected_servername = ret_value; in parse_expected_servername()
279 __owur static int parse_session_ticket(SSL_TEST_CTX *test_ctx, const char *value) in parse_session_ticket() argument
286 test_ctx->session_ticket_expected = ret_value; in parse_session_ticket()
309 __owur static int parse_session_id(SSL_TEST_CTX *test_ctx, const char *value) in parse_session_id() argument
316 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()
542 __owur static int parse_expected_tmp_key_type(SSL_TEST_CTX *test_ctx, in parse_expected_tmp_key_type() argument
545 return parse_expected_key_type(&test_ctx->expected_tmp_key_type, value); in parse_expected_tmp_key_type()
548 __owur static int parse_expected_server_cert_type(SSL_TEST_CTX *test_ctx, in parse_expected_server_cert_type() argument
551 return parse_expected_key_type(&test_ctx->expected_server_cert_type, in parse_expected_server_cert_type()
555 __owur static int parse_expected_server_sign_type(SSL_TEST_CTX *test_ctx, in parse_expected_server_sign_type() argument
558 return parse_expected_key_type(&test_ctx->expected_server_sign_type, in parse_expected_server_sign_type()
562 __owur static int parse_expected_client_cert_type(SSL_TEST_CTX *test_ctx, in parse_expected_client_cert_type() argument
565 return parse_expected_key_type(&test_ctx->expected_client_cert_type, in parse_expected_client_cert_type()
569 __owur static int parse_expected_client_sign_type(SSL_TEST_CTX *test_ctx, in parse_expected_client_sign_type() argument
572 return parse_expected_key_type(&test_ctx->expected_client_sign_type, in parse_expected_client_sign_type()
594 __owur static int parse_expected_server_sign_hash(SSL_TEST_CTX *test_ctx, in parse_expected_server_sign_hash() argument
597 return parse_expected_sign_hash(&test_ctx->expected_server_sign_hash, in parse_expected_server_sign_hash()
601 __owur static int parse_expected_client_sign_hash(SSL_TEST_CTX *test_ctx, in parse_expected_client_sign_hash() argument
604 return parse_expected_sign_hash(&test_ctx->expected_client_sign_hash, in parse_expected_client_sign_hash()
619 __owur static int parse_expected_server_ca_names(SSL_TEST_CTX *test_ctx, in parse_expected_server_ca_names() argument
622 return parse_expected_ca_names(&test_ctx->expected_server_ca_names, value); in parse_expected_server_ca_names()
624 __owur static int parse_expected_client_ca_names(SSL_TEST_CTX *test_ctx, in parse_expected_client_ca_names() argument
627 return parse_expected_ca_names(&test_ctx->expected_client_ca_names, value); in parse_expected_client_ca_names()
644 int (*parse)(SSL_TEST_CTX *test_ctx, const char *value);