Searched refs:DoHandshake (Results 1 – 5 of 5) sorted by relevance
/packages/modules/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 …]
|
/packages/modules/adb/tls/include/adb/tls/ |
D | tls_connection.h | 97 virtual TlsError DoHandshake() = 0;
|
/packages/modules/adb/tls/ |
D | tls_connection.cpp | 50 TlsError DoHandshake() override; 214 TlsConnection::TlsError TlsConnectionImpl::DoHandshake() { in DoHandshake() function in adb::tls::__anon687488e00111::TlsConnectionImpl
|
/packages/modules/adb/pairing_connection/ |
D | pairing_connection.cpp | 185 if (tls_->DoHandshake() != TlsError::Success) { in SetupTlsConnection()
|
/packages/modules/adb/ |
D | transport.cpp | 546 auto err = tls_->DoHandshake(); in DoTlsHandshake()
|