Home
last modified time | relevance | path

Searched refs:version_max (Results 1 – 17 of 17) sorted by relevance

/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dsetup.py40 def check_python_version(impl, version_min, version_max): argument
63 if version_max:
64 max_required = map(int, version_max.split('.'))
69 version_max,
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dsetup.py40 def check_python_version(impl, version_min, version_max): argument
64 if version_max:
65 max_required = list(map(int, version_max.split('.')))
70 version_max,
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Dsetup.py40 def check_python_version(impl, version_min, version_max): argument
64 if version_max:
65 max_required = list(map(int, version_max.split('.')))
70 version_max,
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dsetup.py40 def check_python_version(impl, version_min, version_max): argument
63 if version_max:
64 max_required = map(int, version_max.split('.'))
69 version_max,
/external/curl/lib/vtls/
Dvtls.c90 (data->version_max == needle->version_max) && in Curl_ssl_config_matches()
112 dest->version_max = source->version_max; in Curl_clone_primary_ssl_config()
197 switch(data->set.ssl.primary.version_max) { in ssl_prefs_check()
203 if((data->set.ssl.primary.version_max >> 16) < sslver) { in ssl_prefs_check()
Dmesalink.c111 if(SSL_CONN_CONFIG(version_max) != CURL_SSLVERSION_MAX_NONE) { in mesalink_connect_step1()
Dgtls.c392 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
442 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dpolarssl.c180 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dwolfssl.c139 if(SSL_CONN_CONFIG(version_max) != CURL_SSLVERSION_MAX_NONE) { in wolfssl_connect_step1()
Dmbedtls.c202 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dsectransp.c1280 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
1532 if(conn->ssl_config.version_max != CURL_SSLVERSION_MAX_NONE) {
Dgskit.c672 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dopenssl.c2207 curl_ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
2262 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max_legacy()
Dnss.c1736 const long max = SSL_CONN_CONFIG(version_max); in nss_init_sslver()
Dschannel.c178 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
/external/curl/lib/
Dsetopt.c373 long version, version_max; in Curl_vsetopt() local
381 version_max = C_SSLVERSION_MAX_VALUE(arg); in Curl_vsetopt()
385 version_max < CURL_SSLVERSION_MAX_NONE || in Curl_vsetopt()
386 version_max >= CURL_SSLVERSION_MAX_LAST) in Curl_vsetopt()
390 primary->version_max = version_max; in Curl_vsetopt()
Durldata.h224 long version_max; /* max supported version the client wants to use*/ member