Searched refs:handshake_func (Results 1 - 10 of 10) sorted by relevance

/external/boringssl/src/ssl/
H A Dssl_lib.c515 ssl->handshake_func = ssl->method->ssl_connect;
524 ssl->handshake_func = ssl->method->ssl_accept;
553 if (ssl->handshake_func == NULL) {
562 return ssl->handshake_func(ssl);
566 if (ssl->handshake_func == 0) {
571 if (ssl->handshake_func != ssl->method->ssl_connect) {
576 return ssl->handshake_func(ssl);
580 if (ssl->handshake_func == 0) {
585 if (ssl->handshake_func != ssl->method->ssl_accept) {
590 return ssl->handshake_func(ss
[all...]
H A Ds3_pkt.c202 i = ssl->handshake_func(ssl);
391 * |ssl->handshake_func| to signal success one step early, but the handshake
397 i = ssl->handshake_func(ssl);
441 /* TODO(davidben): Is this check redundant with the handshake_func
536 i = ssl->handshake_func(ssl);
H A Dd1_pkt.c250 i = ssl->handshake_func(ssl);
304 /* TODO(davidben): Is this check redundant with the handshake_func
464 i = ssl->handshake_func(ssl);
H A Dd1_clnt.c142 assert(ssl->handshake_func == dtls1_connect);
H A Dd1_srvr.c140 assert(ssl->handshake_func == dtls1_accept);
H A Dssl_cert.c360 * |SSL_set_connect_state|. If |handshake_func| is NULL, |ssl| is in an
362 if (ssl->handshake_func != NULL && !ssl->server) {
H A Ds3_clnt.c181 assert(ssl->handshake_func == ssl3_connect);
H A Ds3_srvr.c184 assert(ssl->handshake_func == ssl3_accept);
/external/boringssl/include/openssl/
H A Dssl.h3746 int (*handshake_func)(SSL *); member in struct:ssl_st
3750 * "state" and "handshake_func" are properly initialized. But as
3751 * handshake_func is == 0 until then, we use this test instead of an "init"
/external/boringssl/src/include/openssl/
H A Dssl.h3746 int (*handshake_func)(SSL *); member in struct:ssl_st
3750 * "state" and "handshake_func" are properly initialized. But as
3751 * handshake_func is == 0 until then, we use this test instead of an "init"

Completed in 135 milliseconds