/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
H A D | tls_test_common.h | 55 int proto_version; member 84 const char *cipher_suite, int proto_version, 114 int proto_version); 117 test_https_transfer (void *cls, const char *cipher_suite, int proto_version); 139 int proto_version), void *test_function_cls, 140 int daemon_flags, const char *cipher_suite, int proto_version, ...);
|
H A D | tls_test_common.c | 67 const char *cipher_suite, int proto_version, in test_daemon_get() 101 curl_easy_setopt (c, CURLOPT_SSLVERSION, proto_version); in test_daemon_get() 205 * @param proto_version 211 int proto_version) in send_curl_req() 231 curl_easy_setopt (c, CURLOPT_SSLVERSION, proto_version); in send_curl_req() 316 test_https_transfer (void *cls, const char *cipher_suite, int proto_version) in test_https_transfer() argument 338 if (CURLE_OK != send_curl_req (url, &cbc, cipher_suite, proto_version)) in test_https_transfer() 453 int proto_version), void * cls, in test_wrap() 454 int daemon_flags, const char *cipher_suite, int proto_version, ...) in test_wrap() 460 va_start (arg_list, proto_version); in test_wrap() 66 test_daemon_get(void *cls, const char *cipher_suite, int proto_version, int port, int ver_peer) test_daemon_get() argument 210 send_curl_req(char *url, struct CBC * cbc, const char *cipher_suite, int proto_version) send_curl_req() argument 451 test_wrap(const char *test_name, int (*test_function) (void * cls, const char *cipher_suite, int proto_version), void * cls, int daemon_flags, const char *cipher_suite, int proto_version, ...) test_wrap() argument [all...] |
H A D | test_https_get.c | 44 int proto_version) in test_cipher_option() 62 ret = test_https_transfer (test_fd, cipher_suite, proto_version); in test_cipher_option() 73 int proto_version) in test_secure_get() 91 ret = test_https_transfer (test_fd, cipher_suite, proto_version); in test_secure_get() 42 test_cipher_option(FILE * test_fd, const char *cipher_suite, int proto_version) test_cipher_option() argument 71 test_secure_get(FILE * test_fd, const char *cipher_suite, int proto_version) test_secure_get() argument
|
H A D | test_https_multi_daemon.c | 46 int proto_version) in test_concurent_daemon_pair() 81 test_daemon_get (NULL, cipher_suite, proto_version, DEAMON_TEST_PORT, 0); in test_concurent_daemon_pair() 83 test_daemon_get (NULL, cipher_suite, proto_version, in test_concurent_daemon_pair() 88 test_daemon_get (NULL, cipher_suite, proto_version, DEAMON_TEST_PORT, 0); in test_concurent_daemon_pair() 44 test_concurent_daemon_pair(void *cls, const char *cipher_suite, int proto_version) test_concurent_daemon_pair() argument
|
H A D | test_tls_authentication.c | 47 test_secure_get (void * cls, char *cipher_suite, int proto_version) in test_secure_get() argument 65 ret = test_daemon_get (NULL, cipher_suite, proto_version, DEAMON_TEST_PORT, 0); in test_secure_get()
|
H A D | test_https_get_parallel.c | 64 cargs->cipher_suite, cargs->proto_version); in https_transfer_thread_adapter()
|
H A D | test_https_get_parallel_threads.c | 65 cargs->cipher_suite, cargs->proto_version); in https_transfer_thread_adapter()
|
/third_party/python/Modules/clinic/ |
H A D | _ssl.c.h | 403 _ssl__SSLContext_impl(PyTypeObject *type, int proto_version); 409 int proto_version; in _ssl__SSLContext() local 419 proto_version = _PyLong_AsInt(PyTuple_GET_ITEM(args, 0)); in _ssl__SSLContext() 420 if (proto_version == -1 && PyErr_Occurred()) { in _ssl__SSLContext() 423 return_value = _ssl__SSLContext_impl(type, proto_version); in _ssl__SSLContext()
|
/third_party/python/Modules/ |
H A D | _ssl.c | 3012 protocol as proto_version: int 3017 _ssl__SSLContext_impl(PyTypeObject *type, int proto_version) in _ssl__SSLContext_impl() argument 3036 switch(proto_version) { in _ssl__SSLContext_impl() 3084 proto_version); in _ssl__SSLContext_impl() 3105 self->protocol = proto_version; in _ssl__SSLContext_impl() 3114 if (proto_version == PY_SSL_VERSION_TLS_CLIENT) { in _ssl__SSLContext_impl() 3129 if (proto_version != PY_SSL_VERSION_SSL2) in _ssl__SSLContext_impl() 3131 if (proto_version != PY_SSL_VERSION_SSL3) in _ssl__SSLContext_impl() 3151 if (proto_version != PY_SSL_VERSION_SSL2) { in _ssl__SSLContext_impl() 3170 switch(proto_version) { in _ssl__SSLContext_impl() [all...] |