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_server_bound_cert_helper.cc 21 const std::string& server_id) {
22 CHECK(server_bound_certs_.find(server_id) != server_bound_certs_.end());
23 server_bound_certs_[server_id] = false;
27 const std::string& server_id) {
28 DCHECK(server_bound_certs_.find(server_id) == server_bound_certs_.end());
31 server_id, base::Time(), base::Time(), "key", "cert"));
32 server_bound_certs_[server_id] = true;
mock_browsing_data_server_bound_cert_helper.h 21 virtual void DeleteServerBoundCert(const std::string& server_id) OVERRIDE;
24 void AddServerBoundCertSample(const std::string& server_id);
browsing_data_server_bound_cert_helper.h 39 virtual void DeleteServerBoundCert(const std::string& server_id) = 0;
75 virtual void DeleteServerBoundCert(const std::string& server_id) OVERRIDE;
browsing_data_server_bound_cert_helper.cc 26 virtual void DeleteServerBoundCert(const std::string& server_id) OVERRIDE;
42 void DeleteOnIOThread(const std::string& server_id);
87 const std::string& server_id) {
92 this, server_id));
127 const std::string& server_id) {
134 server_id,
217 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 144 QuicServerId server_id);
165 const QuicServerId server_id() const { function in class:net::QuicStreamFactory::Job
221 QuicServerId server_id)
225 server_id_(server_id),
507 QuicServerId server_id(host_port_pair, is_https, privacy_mode);
508 if (HasActiveSession(server_id)) {
509 request->set_stream(CreateIfSessionExists(server_id, net_log));
513 if (HasActiveJob(server_id)) {
514 Job* job = active_jobs_[server_id];
523 crypto_config_.LookupOrCreate(server_id);
676 QuicServerId server_id = *aliases.begin(); local
711 const QuicServerId& server_id = it->first; local
    [all...]
quic_stream_factory.h 213 bool OnResolution(const QuicServerId& server_id,
216 bool HasActiveSession(const QuicServerId& server_id) const;
217 bool HasActiveJob(const QuicServerId& server_id) const;
218 int CreateSession(const QuicServerId& server_id,
226 // Initializes the cached state associated with |server_id| in
229 const QuicServerId& server_id,
233 const QuicServerId& server_id,
quic_crypto_client_stream.h 26 QuicCryptoClientStream(const QuicServerId& server_id,
quic_crypto_client_stream_test.cc 110 QuicServerId server_id("invalid", 80, false, PRIVACY_MODE_DISABLED);
111 stream_.reset(new QuicCryptoClientStream(server_id, session_.get(), NULL,
  /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 61 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
62 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
84 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
85 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
99 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
100 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
116 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
117 config.FillClientHello(server_id,
227 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
228 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,
228 // |canonical_server_id| as the initial CachedState for |server_id|. We will
230 void InitializeFrom(const QuicServerId& server_id,
258 // If the suffix of the hostname in |server_id| is in |canoncial_suffixes_|,
261 void PopulateFromCanonicalConfig(const QuicServerId& server_id,
264 // cached_states_ maps from the server_id to the cached information about
quic_crypto_client_config.cc 273 const QuicServerId& server_id) {
274 CachedStateMap::const_iterator it = cached_states_.find(server_id);
280 cached_states_.insert(make_pair(server_id, cached));
281 PopulateFromCanonicalConfig(server_id, cached);
293 const QuicServerId& server_id,
303 if (CryptoUtils::IsValidSNI(server_id.host())) {
304 out->SetStringPiece(kSNI, server_id.host());
316 if (server_id.is_https()) {
346 const QuicServerId& server_id,
358 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 18 const QuicServerId& server_id,
23 crypto_stream_(server_id, this, NULL, crypto_config) {
quic_client.h 53 const QuicServerId& server_id,
58 const QuicServerId& server_id,
142 const QuicServerId& server_id() const { return server_id_; } function in class:net::tools::QuicClient
145 void set_server_id(const QuicServerId& server_id) {
146 server_id_ = server_id;
quic_client_session.h 28 QuicClientSession(const QuicServerId& 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

Completed in 619 milliseconds

1 2 3