Lines Matching defs:result
35 void HANDSHAKE_RESULT_free(HANDSHAKE_RESULT *result)
37 if (result == NULL)
39 OPENSSL_free(result->client_npn_negotiated);
40 OPENSSL_free(result->server_npn_negotiated);
41 OPENSSL_free(result->client_alpn_negotiated);
42 OPENSSL_free(result->server_alpn_negotiated);
43 OPENSSL_free(result->result_session_ticket_app_data);
44 sk_X509_NAME_pop_free(result->server_ca_names, X509_NAME_free);
45 sk_X509_NAME_pop_free(result->client_ca_names, X509_NAME_free);
46 OPENSSL_free(result->cipher);
47 OPENSSL_free(result);
53 * the result in ex_data.
208 * configurations to ensure the state machine propagates the result
435 * The result points either to |in| or to |ctx_data->alpn_protocols|.
1323 * BIO_lookup() added it in the returned result...
1389 * (We could refactor test mode settings into a substructure. This would result
1471 ret->result = SSL_TEST_INTERNAL_ERROR;
1550 ret->result = SSL_TEST_SUCCESS;
1564 ret->result = SSL_TEST_CLIENT_FAIL;
1567 ret->result = SSL_TEST_SERVER_FAIL;
1570 ret->result = SSL_TEST_INTERNAL_ERROR;
1578 ret->result = SSL_TEST_INTERNAL_ERROR;
1596 ret->result = SSL_TEST_INTERNAL_ERROR;
1605 ret->result = SSL_TEST_INTERNAL_ERROR;
1645 ret->result = SSL_TEST_SERVER_FAIL;
1725 HANDSHAKE_RESULT *result;
1728 result = do_handshake_internal(server_ctx, server2_ctx, client_ctx,
1731 if (result == NULL
1733 || result->result == SSL_TEST_INTERNAL_ERROR)
1736 if (result->result != SSL_TEST_SUCCESS) {
1737 result->result = SSL_TEST_FIRST_HANDSHAKE_FAILED;
1741 HANDSHAKE_RESULT_free(result);
1743 result = do_handshake_internal(resume_server_ctx, NULL, resume_client_ctx,
1749 return result;