Searched refs:DoHandshake (Results 1 – 5 of 5) sorted by relevance
/system/core/adb/tls/tests/ |
D | tls_connection_test.cpp | 245 client_thread_ = std::thread([=]() { EXPECT_EQ(client_->DoHandshake(), expected); }); in StartClientHandshakeAsync() 297 ASSERT_EQ(server_->DoHandshake(), TlsError::Success); in TEST_F() 322 ASSERT_EQ(server_->DoHandshake(), TlsError::PeerRejectedCertificate); in TEST_F() 350 ASSERT_EQ(server_->DoHandshake(), TlsError::Success); in TEST_F() 381 ASSERT_EQ(server_->DoHandshake(), TlsError::CertificateRejected); in TEST_F() 412 ASSERT_EQ(server_->DoHandshake(), TlsError::Success); in TEST_F() 436 ASSERT_EQ(server_->DoHandshake(), TlsError::CertificateRejected); in TEST_F() 452 ASSERT_EQ(server_->DoHandshake(), TlsError::CertificateRejected); in TEST_F() 465 ASSERT_EQ(server_->DoHandshake(), TlsError::PeerRejectedCertificate); in TEST_F() 483 ASSERT_EQ(server_->DoHandshake(), TlsError::PeerRejectedCertificate); in TEST_F() [all …]
|
/system/core/adb/tls/include/adb/tls/ |
D | tls_connection.h | 96 virtual TlsError DoHandshake() = 0;
|
/system/core/adb/tls/ |
D | tls_connection.cpp | 48 TlsError DoHandshake() override; 212 TlsConnection::TlsError TlsConnectionImpl::DoHandshake() { in DoHandshake() function in adb::tls::__anon2995fb160111::TlsConnectionImpl
|
/system/core/adb/pairing_connection/ |
D | pairing_connection.cpp | 185 if (tls_->DoHandshake() != TlsError::Success) { in SetupTlsConnection()
|
/system/core/adb/ |
D | transport.cpp | 534 auto err = tls_->DoHandshake(); in DoTlsHandshake()
|