HomeSort by relevance Sort by last modified time
    Searched full:handshake_func (Results 1 - 11 of 11) sorted by null

  /external/boringssl/src/ssl/
ssl_lib.c 515 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(ssl)
    [all...]
s3_pkt.c 202 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);
ssl_cert.c 360 * |SSL_set_connect_state|. If |handshake_func| is NULL, |ssl| is in an
362 if (ssl->handshake_func != NULL && !ssl->server) {
d1_pkt.c 250 i = ssl->handshake_func(ssl);
304 /* TODO(davidben): Is this check redundant with the handshake_func
464 i = ssl->handshake_func(ssl);
d1_clnt.c 142 assert(ssl->handshake_func == dtls1_connect);
d1_srvr.c 140 assert(ssl->handshake_func == dtls1_accept);
s3_clnt.c 181 assert(ssl->handshake_func == ssl3_connect);
    [all...]
s3_srvr.c 184 assert(ssl->handshake_func == ssl3_accept);
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 3746 int (*handshake_func)(SSL *); member in struct:ssl_st
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py     [all...]

Completed in 803 milliseconds