Home
last modified time | relevance | path

Searched refs:server_hostname (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/net/quic/crypto/
Dquic_crypto_client_config.h120 CachedState* LookupOrCreate(const std::string& server_hostname);
129 void FillInchoateClientHello(const std::string& server_hostname,
145 QuicErrorCode FillClientHello(const std::string& server_hostname,
201 void InitializeFrom(const std::string& server_hostname,
Dquic_crypto_client_config.cc225 const string& server_hostname) { in LookupOrCreate() argument
227 cached_states_.find(server_hostname); in LookupOrCreate()
233 cached_states_.insert(make_pair(server_hostname, cached)); in LookupOrCreate()
238 const string& server_hostname, in FillInchoateClientHello() argument
248 if (CryptoUtils::IsValidSNI(server_hostname)) { in FillInchoateClientHello()
249 out->SetStringPiece(kSNI, server_hostname); in FillInchoateClientHello()
296 const string& server_hostname, in FillClientHello() argument
307 FillInchoateClientHello(server_hostname, preferred_version, cached, in FillClientHello()
426 if (!channel_id_signer_->Sign(server_hostname, hkdf_input, in FillClientHello()
638 const std::string& server_hostname, in InitializeFrom() argument
[all …]
/external/chromium_org/net/quic/test_tools/
Dmock_crypto_client_stream_factory.cc21 const string& server_hostname, in CreateQuicCryptoClientStream() argument
24 last_stream_ = new MockCryptoClientStream(server_hostname, session, in CreateQuicCryptoClientStream()
Dmock_crypto_client_stream.cc11 const string& server_hostname, in MockCryptoClientStream() argument
15 : QuicCryptoClientStream(server_hostname, session, crypto_config), in MockCryptoClientStream()
Dmock_crypto_client_stream_factory.h23 const string& server_hostname,
Dmock_crypto_client_stream.h37 const string& server_hostname,
/external/chromium_org/net/tools/quic/test_tools/
Dquic_test_client.h31 QuicTestClient(IPEndPoint server_address, const string& server_hostname,
34 const string& server_hostname,
38 const string& server_hostname,
Dquic_test_client.cc103 const string& server_hostname, in QuicEpollClient() argument
105 : Super(server_address, server_hostname, supported_versions, false), in QuicEpollClient()
110 const string& server_hostname, in QuicEpollClient() argument
113 : Super(server_address, server_hostname, config, supported_versions), in QuicEpollClient()
/external/chromium_org/net/tools/quic/
Dquic_client_session.cc17 const string& server_hostname, in QuicClientSession() argument
22 crypto_stream_(server_hostname, this, crypto_config) { in QuicClientSession()
Dquic_client.cc34 const string& server_hostname, in QuicClient() argument
38 server_hostname_(server_hostname), in QuicClient()
51 const string& server_hostname, in QuicClient() argument
55 server_hostname_(server_hostname), in QuicClient()
Dquic_client.h40 const string& server_hostname,
44 const std::string& server_hostname,
Dquic_client_session.h26 QuicClientSession(const std::string& server_hostname,
/external/chromium_org/net/quic/
Dquic_crypto_client_stream_factory.h24 const string& server_hostname,
Dquic_client_session.cc89 const string& server_hostname, in QuicClientSession() argument
108 server_hostname, this, crypto_config) : in QuicClientSession()
109 new QuicCryptoClientStream(server_hostname, this, crypto_config)); in QuicClientSession()
115 NetLog::StringCallback("host", &server_hostname)); in QuicClientSession()
Dquic_crypto_client_stream.h29 QuicCryptoClientStream(const string& server_hostname,
Dquic_crypto_client_stream.cc68 const string& server_hostname, in QuicCryptoClientStream() argument
75 server_hostname_(server_hostname), in QuicCryptoClientStream()
Dquic_stream_factory.cc563 const string server_hostname = host_port_proxy_pair.first.host(); in PopulateFromCanonicalConfig() local
567 if (EndsWith(server_hostname, cannoncial_suffixes_[i], false)) { in PopulateFromCanonicalConfig()
592 crypto_config->InitializeFrom(server_hostname, in PopulateFromCanonicalConfig()
Dquic_client_session.h91 const std::string& server_hostname,
/external/chromium/chrome/browser/chromeos/cros/
Dnetwork_library.h439 const std::string& server_hostname() const { return server_hostname_; } in server_hostname() function
468 void set_server_hostname(const std::string& server_hostname) { in set_server_hostname() argument
469 server_hostname_ = server_hostname; in set_server_hostname()
1122 const std::string& server_hostname,
Dnetwork_library.cc2809 connect_data_.server_hostname = server; in ConnectToVirtualNetworkPSK()
2848 vpn->set_server_hostname(data.server_hostname); in ConnectToVirtualNetworkUsingConnectData()
4327 std::string server_hostname; member
/external/chromium_org/chrome/browser/chromeos/options/
Dvpn_config_view.cc709 std::string provider_type, server_hostname, username, group_name; in InitFromProperties() local
717 shill::kHostProperty, &server_hostname); in InitFromProperties()
750 if (server_textfield_ && !server_hostname.empty()) in InitFromProperties()
751 server_textfield_->SetText(UTF8ToUTF16(server_hostname)); in InitFromProperties()
/external/chromium/chrome/browser/chromeos/options/
Dvpn_config_view.cc312 server_hostname_ = vpn->server_hostname(); in Init()
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
Dinternet_options_handler.cc1375 std::string service_path, server_hostname; in SetServerHostnameCallback() local
1378 !args->GetString(1, &server_hostname)) { in SetServerHostnameCallback()
1383 base::Value::CreateStringValue(server_hostname)); in SetServerHostnameCallback()
/external/chromium/chrome/browser/
Dbrowser_about_handler.cc450 str += WrapWithTH(vpn->server_hostname()); in ToHtmlTableRow()