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/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/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/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/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/curl/lib/vtls/
Dbearssl.c312 unsigned version_min, version_max; in bearssl_connect_step1() local
328 version_max = BR_TLS10; in bearssl_connect_step1()
332 version_max = BR_TLS11; in bearssl_connect_step1()
336 version_max = BR_TLS12; in bearssl_connect_step1()
341 version_max = BR_TLS12; in bearssl_connect_step1()
364 br_ssl_engine_set_versions(&backend->ctx.eng, version_min, version_max); in bearssl_connect_step1()
Dvtls.c129 (data->version_max == needle->version_max) && in Curl_ssl_config_matches()
153 dest->version_max = source->version_max; in Curl_clone_primary_ssl_config()
248 switch(data->set.ssl.primary.version_max) { in ssl_prefs_check()
254 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()
Dwolfssl.c239 if(SSL_CONN_CONFIG(version_max) != CURL_SSLVERSION_MAX_NONE) { in wolfssl_connect_step1()
Dmbedtls.c207 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dsectransp.c1300 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
1560 if(conn->ssl_config.version_max != CURL_SSLVERSION_MAX_NONE) {
Dgskit.c671 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dgtls.c321 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
Dopenssl.c2276 curl_ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
2330 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max_legacy()
Dnss.c1745 const long max = SSL_CONN_CONFIG(version_max); in nss_init_sslver()
Dschannel.c169 long ssl_version_max = SSL_CONN_CONFIG(version_max); in set_ssl_version_min_max()
/external/curl/lib/
Dsetopt.c411 long version, version_max; in Curl_vsetopt() local
421 version_max = C_SSLVERSION_MAX_VALUE(arg); in Curl_vsetopt()
425 version_max < CURL_SSLVERSION_MAX_NONE || in Curl_vsetopt()
426 version_max >= CURL_SSLVERSION_MAX_LAST) in Curl_vsetopt()
430 primary->version_max = version_max; in Curl_vsetopt()
Durldata.h221 long version_max; /* max supported version the client wants to use*/ member