| /freebsd-13.1/crypto/openssl/apps/ |
| H A D | ciphers.c | 100 int min_version = 0, max_version = 0; in ciphers_main() local 131 max_version = SSL3_VERSION; in ciphers_main() 135 max_version = TLS1_VERSION; in ciphers_main() 139 max_version = TLS1_1_VERSION; in ciphers_main() 143 max_version = TLS1_2_VERSION; in ciphers_main() 147 max_version = TLS1_3_VERSION; in ciphers_main() 184 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in ciphers_main()
|
| H A D | s_time.c | 105 int max_version = 0, ver, buf_len; in s_time_main() local 181 max_version = SSL3_VERSION; in s_time_main() 197 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in s_time_main()
|
| H A D | s_client.c | 964 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0; in s_client_main() local 1286 max_version = SSL3_VERSION; in s_client_main() 1294 max_version = TLS1_3_VERSION; in s_client_main() 1302 max_version = TLS1_2_VERSION; in s_client_main() 1310 max_version = TLS1_1_VERSION; in s_client_main() 1318 max_version = TLS1_VERSION; in s_client_main() 1335 max_version = DTLS1_VERSION; in s_client_main() 1344 max_version = DTLS1_2_VERSION; in s_client_main() 1760 if (max_version != 0 in s_client_main() 1761 && SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in s_client_main()
|
| H A D | s_server.c | 1043 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0; in s_server_main() local 1460 max_version = SSL3_VERSION; in s_server_main() 1464 max_version = TLS1_3_VERSION; in s_server_main() 1468 max_version = TLS1_2_VERSION; in s_server_main() 1472 max_version = TLS1_1_VERSION; in s_server_main() 1476 max_version = TLS1_VERSION; in s_server_main() 1488 max_version = DTLS1_VERSION; in s_server_main() 1496 max_version = DTLS1_2_VERSION; in s_server_main() 1821 if (max_version != 0 in s_server_main() 1822 && SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in s_server_main()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_client/ |
| H A D | shelf.c | 339 shelf->max_version = -1; in shelf_read_current() 572 shelf->max_version = 0; in shelf_construct() 589 if ((*shelf_p)->max_version < 0) in svn_client__shelf_open_existing() 611 if (shelf->max_version < 0) in svn_client__shelf_open_or_create() 613 shelf->max_version = 0; in svn_client__shelf_open_or_create() 642 for (i = shelf->max_version; i > 0; i--) in svn_client__shelf_delete() 970 shelf->max_version = previous_version; in svn_client__shelf_delete_newer_versions() 1095 int next_version = shelf->max_version + 1; in svn_client__shelf_save_new_version3() 1123 shelf->max_version = next_version; in svn_client__shelf_save_new_version3() 1241 if (shelf->max_version == 0) in svn_client__shelf_get_newest_version() [all …]
|
| H A D | shelf2.c | 419 shelf->max_version = -1; in shelf_read_current() 1210 shelf->max_version = 0; in shelf_construct() 1227 if ((*shelf_p)->max_version < 0) in svn_client__shelf2_open_existing() 1249 if (shelf->max_version < 0) in svn_client__shelf2_open_or_create() 1251 shelf->max_version = 0; in svn_client__shelf2_open_or_create() 1280 for (i = shelf->max_version; i > 0; i--) in svn_client__shelf2_delete() 1916 shelf->max_version = previous_version; in svn_client__shelf2_delete_newer_versions() 1957 int next_version = shelf->max_version + 1; in svn_client__shelf2_save_new_version3() 1973 shelf->max_version = next_version; in svn_client__shelf2_save_new_version3() 2091 if (shelf->max_version == 0) in svn_client__shelf2_get_newest_version() [all …]
|
| H A D | status.c | 364 shelf, shelf->max_version, in shelf_status()
|
| H A D | diff.c | 2374 shelf, shelf->max_version, in diff_shelf()
|
| /freebsd-13.1/contrib/subversion/subversion/svn/ |
| H A D | shelf2-cmd.c | 233 if (version == shelf->max_version) in stats() 239 shelf->max_version), in stats() 240 version, shelf->max_version); in stats() 299 SVN_ERR(stats(shelf, shelf->max_version, shelf_version, time_now, in shelves_list() 472 SVN_ERR(stats(shelf, shelf->max_version, previous_version, apr_time_now(), in shelve() 546 *new_version_p = shelf->max_version; in shelve() 648 old_version = shelf->max_version; in shelf_restore() 658 version = shelf->max_version; in shelf_restore()
|
| H A D | shelf-cmd.c | 233 if (version == shelf->max_version) in stats() 239 shelf->max_version), in stats() 240 version, shelf->max_version); in stats() 299 SVN_ERR(stats(shelf, shelf->max_version, shelf_version, time_now, in shelves_list() 472 SVN_ERR(stats(shelf, shelf->max_version, previous_version, apr_time_now(), in shelve() 546 *new_version_p = shelf->max_version; in shelve() 648 old_version = shelf->max_version; in shelf_restore() 658 version = shelf->max_version; in shelf_restore()
|
| /freebsd-13.1/crypto/openssl/ssl/ |
| H A D | ssl_conf.c | 96 int *max_version; member 371 return min_max_proto(cctx, value, cctx->max_version); in cmd_MaxProtocol() 972 cctx->max_version = &ssl->max_proto_version; in SSL_CONF_CTX_set_ssl() 978 cctx->max_version = NULL; in SSL_CONF_CTX_set_ssl() 991 cctx->max_version = &ctx->max_proto_version; in SSL_CONF_CTX_set_ssl_ctx() 997 cctx->max_version = NULL; in SSL_CONF_CTX_set_ssl_ctx()
|
| H A D | ssl_lib.c | 473 if (max_version == DTLS1_BAD_VER in ssl_check_allowed_versions() 488 if (max_version == 0) in ssl_check_allowed_versions() 489 max_version = DTLS1_2_VERSION; in ssl_check_allowed_versions() 492 max_version = DTLS1_VERSION; in ssl_check_allowed_versions() 514 if (max_version == 0) in ssl_check_allowed_versions() 515 max_version = TLS1_3_VERSION; in ssl_check_allowed_versions() 518 max_version = TLS1_2_VERSION; in ssl_check_allowed_versions() 522 max_version = TLS1_1_VERSION; in ssl_check_allowed_versions() 526 max_version = TLS1_VERSION; in ssl_check_allowed_versions() 529 if (max_version == TLS1_VERSION) in ssl_check_allowed_versions() [all …]
|
| H A D | ssl_local.h | 2404 int *max_version, int *real_max);
|
| /freebsd-13.1/contrib/googletest/googletest/scripts/ |
| H A D | gtest-config.in | 260 check_versions ${min_version:-0.0.0} ${max_version:-9999.9999.9999}
|
| /freebsd-13.1/contrib/googletest/googlemock/scripts/ |
| H A D | gmock-config.in | 289 check_versions ${min_version:-0.0.0} ${max_version:-9999.9999.9999}
|
| /freebsd-13.1/crypto/openssl/ssl/statem/ |
| H A D | extensions.c | 777 int max_version) in should_add_extension() argument 787 && (SSL_IS_DTLS(s) || max_version < TLS1_3_VERSION))) in should_add_extension() 805 int min_version, max_version = 0, reason; in tls_construct_extensions() local 824 reason = ssl_get_min_max_version(s, &min_version, &max_version, NULL); in tls_construct_extensions() 837 if (!custom_ext_add(s, context, pkt, x, chainidx, max_version)) { in tls_construct_extensions() 848 if (!should_add_extension(s, thisexd->context, context, max_version)) in tls_construct_extensions()
|
| H A D | extensions_clnt.c | 511 int currv, min_version, max_version, reason; in tls_construct_ctos_supported_versions() local 513 reason = ssl_get_min_max_version(s, &min_version, &max_version, NULL); in tls_construct_ctos_supported_versions() 524 if (max_version < TLS1_3_VERSION) in tls_construct_ctos_supported_versions() 536 for (currv = max_version; currv >= min_version; currv--) { in tls_construct_ctos_supported_versions()
|
| H A D | statem_lib.c | 2034 int ssl_get_min_max_version(const SSL *s, int *min_version, int *max_version, in ssl_get_min_max_version() argument 2053 *min_version = *max_version = s->version; in ssl_get_min_max_version() 2124 *max_version = version; in ssl_get_min_max_version()
|
| H A D | statem_local.h | 178 unsigned int thisctx, int max_version);
|
| /freebsd-13.1/contrib/subversion/subversion/include/private/ |
| H A D | svn_client_shelf2.h | 62 int max_version; /** @deprecated */ member
|
| H A D | svn_client_shelf.h | 62 int max_version; /**< @deprecated */ member
|
| /freebsd-13.1/sys/dev/sfxge/common/ |
| H A D | efx_mcdi.c | 257 unsigned int max_version; in efx_mcdi_request_start() local 286 max_version = emip->emi_max_version; in efx_mcdi_request_start() 298 if ((max_version >= 2) && in efx_mcdi_request_start()
|