HomeSort by relevance Sort by last modified time
    Searched refs:server_id (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream_factory.cc 24 const QuicServerId& server_id,
28 server_id, session, NULL, crypto_config, handshake_mode_,
mock_crypto_client_stream_factory.h 24 const QuicServerId& server_id,
mock_crypto_client_stream.h 39 const QuicServerId& server_id,
mock_crypto_client_stream.cc 15 const QuicServerId& server_id,
21 : QuicCryptoClientStream(server_id, session, verify_context,
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_channel_id_helper.cc 24 const std::string& server_id) {
26 ASSERT_TRUE(channel_ids_.find(server_id) != channel_ids_.end());
27 channel_ids_[server_id] = false;
31 const std::string& server_id) {
32 ASSERT_TRUE(channel_ids_.find(server_id) == channel_ids_.end());
35 server_id, base::Time(), base::Time(), "key", "cert"));
36 channel_ids_[server_id] = true;
mock_browsing_data_channel_id_helper.h 21 virtual void DeleteChannelID(const std::string& server_id) OVERRIDE;
24 void AddChannelIDSample(const std::string& server_id);
browsing_data_channel_id_helper.h 41 virtual void DeleteChannelID(const std::string& server_id) = 0;
72 virtual void DeleteChannelID(const std::string& server_id) OVERRIDE;
browsing_data_channel_id_helper.cc 28 virtual void DeleteChannelID(const std::string& server_id) OVERRIDE;
44 void DeleteOnIOThread(const std::string& server_id);
88 const std::string& server_id) {
94 &BrowsingDataChannelIDHelperImpl::DeleteOnIOThread, this, server_id));
131 const std::string& server_id) {
138 server_id,
211 const std::string& server_id) {
  /external/chromium_org/net/quic/
quic_crypto_client_stream_factory.h 25 const QuicServerId& server_id,
quic_stream_factory.cc 168 QuicServerId server_id);
189 const QuicServerId server_id() const { function in class:net::QuicStreamFactory::Job
246 QuicServerId server_id)
250 server_id_(server_id),
560 QuicServerId server_id(host_port_pair, is_https, privacy_mode);
561 if (HasActiveSession(server_id)) {
562 request->set_stream(CreateIfSessionExists(server_id, net_log));
566 if (HasActiveJob(server_id)) {
567 Job* job = active_jobs_[server_id];
576 crypto_config_.LookupOrCreate(server_id);
733 QuicServerId server_id = *aliases.begin(); local
768 const QuicServerId& server_id = it->first; local
    [all...]
quic_stream_factory.h 215 bool OnResolution(const QuicServerId& server_id,
218 bool HasActiveSession(const QuicServerId& server_id) const;
219 bool HasActiveJob(const QuicServerId& server_id) const;
220 int CreateSession(const QuicServerId& server_id,
228 // Initializes the cached state associated with |server_id| in
231 const QuicServerId& server_id,
235 const QuicServerId& server_id,
quic_crypto_client_stream.h 28 QuicCryptoClientStream(const QuicServerId& server_id,
  /external/chromium_org/sync/syncable/
syncable_id.cc 34 Id Id::CreateFromServerId(const string& server_id) {
36 if (server_id == "0")
39 id.s_ = string("s") + server_id;
  /external/chromium_org/net/quic/crypto/
quic_server_info.h 28 QuicServerInfo(const QuicServerId& server_id);
112 // |server_id| or NULL on failure.
113 virtual QuicServerInfo* GetForServer(const QuicServerId& server_id) = 0;
quic_crypto_client_config_test.cc 73 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
74 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
96 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
97 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
111 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
112 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
128 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
129 config.FillClientHello(server_id,
239 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
240 QuicCryptoClientConfig::CachedState* state = config.LookupOrCreate(server_id);
    [all...]
quic_crypto_client_config.h 139 // LookupOrCreate returns a CachedState for the given |server_id|. If no such
141 CachedState* LookupOrCreate(const QuicServerId& server_id);
153 void FillInchoateClientHello(const QuicServerId& server_id,
173 QuicErrorCode FillClientHello(const QuicServerId& server_id,
242 // |canonical_server_id| as the initial CachedState for |server_id|. We will
244 void InitializeFrom(const QuicServerId& server_id,
283 // If the suffix of the hostname in |server_id| is in |canoncial_suffixes_|,
286 void PopulateFromCanonicalConfig(const QuicServerId& server_id,
289 // cached_states_ maps from the server_id to the cached information about
quic_crypto_client_config.cc 318 const QuicServerId& server_id) {
319 CachedStateMap::const_iterator it = cached_states_.find(server_id);
325 cached_states_.insert(make_pair(server_id, cached));
326 PopulateFromCanonicalConfig(server_id, cached);
338 const QuicServerId& server_id,
348 if (CryptoUtils::IsValidSNI(server_id.host())) {
349 out->SetStringPiece(kSNI, server_id.host());
361 if (server_id.is_https()) {
391 const QuicServerId& server_id,
403 FillInchoateClientHello(server_id, preferred_version, cached
    [all...]
quic_server_info.cc 32 QuicServerInfo::QuicServerInfo(const QuicServerId& server_id)
33 : server_id_(server_id) {
  /external/chromium_org/net/tools/quic/
quic_client_session.cc 26 const QuicServerId& server_id,
30 new QuicCryptoClientStream(server_id, this, NULL, crypto_config));
quic_client_session.h 37 void InitializeSession(const QuicServerId& server_id,
quic_client.h 53 const QuicServerId& server_id,
58 const QuicServerId& server_id,
140 const QuicServerId& server_id() const { return server_id_; } function in class:net::tools::QuicClient
143 void set_server_id(const QuicServerId& server_id) {
144 server_id_ = server_id;
  /external/chromium_org/net/http/
disk_cache_based_quic_server_info_unittest.cc 60 QuicServerId server_id("www.verisign.com", 443, true, PRIVACY_MODE_DISABLED);
62 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
78 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
80 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
104 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
120 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
232 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
234 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
266 new DiskCacheBasedQuicServerInfo(server_id, cache.http_cache()));
disk_cache_based_quic_server_info.h 30 DiskCacheBasedQuicServerInfo(const QuicServerId& server_id,
  /external/wpa_supplicant_8/src/radius/
radius_server.h 157 * server_id - Server identity
159 const char *server_id; member in struct:radius_server_conf
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_client.h 38 const QuicServerId& server_id,
43 const QuicServerId& server_id,

Completed in 286 milliseconds

1 2 3