OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:version_max
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/net/http/
http_network_transaction_ssl_unittest.cc
31
ssl_config_.
version_max
= SSL_PROTOCOL_VERSION_TLS1;
48
ssl_config_.
version_max
= SSL_PROTOCOL_VERSION_TLS1_1;
152
// |
version_max
| fallbacks to SSL 3.0.
153
EXPECT_EQ(SSL_PROTOCOL_VERSION_SSL3, ssl_config.
version_max
);
http_network_transaction.cc
1344
uint16
version_max
= server_ssl_config_.
version_max
;
local
[
all
...]
http_stream_factory_impl_job.cc
[
all
...]
/external/chromium_org/net/ssl/
ssl_config_service.cc
42
version_max
(g_default_version_max),
163
(orig_config.
version_max
!= new_config.
version_max
) ||
184
return ssl_config.
version_max
>= SSL_PROTOCOL_VERSION_TLS1;
ssl_config_service_unittest.cc
55
initial_config.
version_max
= SSL_PROTOCOL_VERSION_TLS1_1;
74
initial_config.
version_max
= SSL_PROTOCOL_VERSION_TLS1_1;
99
initial_config.
version_max
= SSL_PROTOCOL_VERSION_SSL3;
ssl_config_service.h
71
// SSL 2.0 is not supported. If
version_max
< version_min, it means no
74
uint16
version_max
;
member in struct:net::SSLConfig
142
//
version_max
).
177
//
version_max
/external/chromium_org/chrome/browser/net/
ssl_config_service_manager_pref.cc
240
SSLProtocolVersionToString(default_config.
version_max
);
286
config->
version_max
= net::SSLConfigService::default_version_max();
288
uint16
version_max
= SSLProtocolVersionFromString(version_max_str);
local
297
if (
version_max
) {
300
uint16 supported_version_max = config->
version_max
;
301
config->
version_max
= std::min(supported_version_max,
version_max
);
ssl_config_service_manager_pref_unittest.cc
175
ssl_config.
version_max
);
225
EXPECT_EQ(net::SSL_PROTOCOL_VERSION_SSL3, ssl_config.
version_max
);
/external/chromium_org/net/socket/
client_socket_pool_manager.cc
126
// Encode
version_max
in the connection group's name, unless it's the
127
// default
version_max
. (We want the common case to use the shortest
128
// encoding). A
version_max
of TLS 1.1 is encoded as "ssl(max:3.2)/"
132
// should be the same for all connections, whereas
version_max
may
135
if (ssl_config_for_origin.
version_max
!=
137
switch (ssl_config_for_origin.
version_max
) {
ssl_client_socket_openssl.cc
678
ssl_config_.
version_max
>= SSL_PROTOCOL_VERSION_TLS1);
683
ssl_config_.
version_max
>= SSL_PROTOCOL_VERSION_TLS1_1);
689
ssl_config_.
version_max
>= SSL_PROTOCOL_VERSION_TLS1_2);
[
all
...]
ssl_server_socket_nss.cc
342
version_range.max = ssl_config_.
version_max
;
ssl_client_socket_nss.cc
[
all
...]
/external/chromium/chrome/browser/
enumerate_modules_model_win.cc
324
scoped_ptr<Version>
version_max
(
326
bool version_ok = !version_min.get() && !
version_max
.get();
331
bool too_high =
version_max
.get() &&
333
module_version->CompareTo(*
version_max
.get()) >= 0);
[
all
...]
/external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc
389
Version
version_max
(blacklisted.version_to);
390
bool version_ok = !version_min.IsValid() && !
version_max
.IsValid();
395
bool too_high =
version_max
.IsValid() &&
397
module_version.CompareTo(
version_max
) >= 0);
[
all
...]
/external/chromium_org/chrome/common/
pref_names.cc
[
all
...]
Completed in 176 milliseconds