Home
last modified time | relevance | path

Searched refs:ssl_cipher_suite (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/pc/
Ddtls_transport.cc117 int ssl_cipher_suite; in UpdateInformation() local
121 success &= internal_dtls_transport_->GetSslCipherSuite(&ssl_cipher_suite); in UpdateInformation()
126 ssl_cipher_suite, srtp_cipher, in UpdateInformation()
Ddtls_transport_unittest.cc153 ASSERT_TRUE(observer_.info_.ssl_cipher_suite()); in TEST_F()
154 EXPECT_EQ(kNonsenseCipherSuite, *observer_.info_.ssl_cipher_suite()); in TEST_F()
158 EXPECT_FALSE(observer_.info_.ssl_cipher_suite()); in TEST_F()
Dtransport_stats.h32 int ssl_cipher_suite = rtc::TLS_NULL_WITH_NULL_NULL; member
Dstats_collector.cc886 int ssl_cipher_suite = channel_iter.ssl_cipher_suite; in ExtractSessionInfo() local
887 if (ssl_cipher_suite != rtc::TLS_NULL_WITH_NULL_NULL && in ExtractSessionInfo()
888 rtc::SSLStreamAdapter::SslCipherSuiteToName(ssl_cipher_suite) in ExtractSessionInfo()
892 rtc::SSLStreamAdapter::SslCipherSuiteToName(ssl_cipher_suite)); in ExtractSessionInfo()
Drtc_stats_collector.cc1848 if (channel_stats.ssl_cipher_suite != rtc::TLS_NULL_WITH_NULL_NULL && in ProduceTransportStats_n()
1850 channel_stats.ssl_cipher_suite) in ProduceTransportStats_n()
1854 channel_stats.ssl_cipher_suite); in ProduceTransportStats_n()
Djsep_transport.cc712 dtls_transport->GetSslCipherSuite(&substats.ssl_cipher_suite); in GetTransportStats()
Dpeer_connection.cc7032 int ssl_cipher_suite = stats.channel_stats[0].ssl_cipher_suite; in ReportNegotiatedCiphers() local
7034 ssl_cipher_suite == rtc::TLS_NULL_WITH_NULL_NULL) { in ReportNegotiatedCiphers()
7063 if (ssl_cipher_suite != rtc::TLS_NULL_WITH_NULL_NULL) { in ReportNegotiatedCiphers()
7068 "WebRTC.PeerConnection.SslCipherSuite.Audio", ssl_cipher_suite, in ReportNegotiatedCiphers()
7073 "WebRTC.PeerConnection.SslCipherSuite.Video", ssl_cipher_suite, in ReportNegotiatedCiphers()
7078 "WebRTC.PeerConnection.SslCipherSuite.Data", ssl_cipher_suite, in ReportNegotiatedCiphers()
Dstats_collector_unittest.cc679 channel_stats.ssl_cipher_suite = in TestCertificateReports()
Drtc_stats_collector_unittest.cc2340 rtp_transport_channel_stats.ssl_cipher_suite = 0x2F; in TEST_F()
/external/webrtc/api/
Ddtls_transport_interface.cc24 absl::optional<int> ssl_cipher_suite, in DtlsTransportInformation() argument
29 ssl_cipher_suite_(ssl_cipher_suite), in DtlsTransportInformation()
Ddtls_transport_interface.h48 absl::optional<int> ssl_cipher_suite,
61 absl::optional<int> ssl_cipher_suite() const { return ssl_cipher_suite_; } in ssl_cipher_suite() function