Home
last modified time | relevance | path

Searched refs:proxytype (Results 1 – 13 of 13) sorted by relevance

/third_party/curl/lib/
Durl.c522 set->proxytype = CURLPROXY_HTTP; /* defaults to HTTP proxy */ in Curl_init_userdefined()
845 if((data->proxytype == needle->proxytype) && in proxy_info_matches()
1226 if(IS_HTTPS_PROXY(needle->http_proxy.proxytype)) { in ConnectionExists()
1228 if(needle->http_proxy.proxytype != in ConnectionExists()
1229 check->http_proxy.proxytype) in ConnectionExists()
1535 conn->http_proxy.proxytype = data->set.proxytype; in allocate_conn()
1536 conn->socks_proxy.proxytype = CURLPROXY_SOCKS4; in allocate_conn()
1543 (conn->http_proxy.proxytype == CURLPROXY_HTTP || in allocate_conn()
1544 conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0 || in allocate_conn()
1545 IS_HTTPS_PROXY(conn->http_proxy.proxytype))) ? in allocate_conn()
[all …]
Dsocks.c280 (conn->socks_proxy.proxytype == CURLPROXY_SOCKS4A) ? TRUE : FALSE; in do_SOCKS4()
574 (conn->socks_proxy.proxytype == CURLPROXY_SOCKS5) ? TRUE : FALSE; in do_SOCKS5()
1064 switch(conn->socks_proxy.proxytype) { in connect_SOCKS()
Dcf-h1-proxy.c243 http_minor = (cf->conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) ? 0 : 1; in start_CONNECT()
729 if((conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) && in start_CONNECT()
Durldata.h861 unsigned char proxytype; /* curl_proxytype: what kind of proxy that is in member
1731 unsigned char proxytype; /* what kind of proxy: curl_proxytype */ member
Dconnect.c1228 if(IS_HTTPS_PROXY(cf->conn->http_proxy.proxytype) in cf_setup_connect()
Dsetopt.c1173 data->set.proxytype = (unsigned char)(curl_proxytype)arg; in Curl_vsetopt()
Dhttp.c1332 || IS_HTTPS_PROXY(conn->http_proxy.proxytype) in Curl_buffer_send()
/third_party/python/Lib/multiprocessing/
Dmanagers.py378 callable, exposed, method_to_typeid, proxytype = \
695 def register(cls, typeid, callable=None, proxytype=None, exposed=None, argument
703 if proxytype is None:
704 proxytype = AutoProxy
706 exposed = exposed or getattr(proxytype, '_exposed_', None)
709 getattr(proxytype, '_method_to_typeid_', None)
717 callable, exposed, method_to_typeid, proxytype
724 proxy = proxytype(
824 proxytype = self._manager._registry[token.typeid][-1]
826 proxy = proxytype(
[all …]
/third_party/python/Doc/includes/
Dmp_newtype.py44 MyManager.register('baz', baz, proxytype=GeneratorProxy)
/third_party/curl/lib/vtls/
Dvtls.c1800 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS2) { in cf_ssl_proxy_create()
/third_party/python/Doc/library/
Dmultiprocessing.rst1705 ….. method:: register(typeid[, callable[, proxytype[, exposed[, method_to_typeid[, create_method]]]…
1719 *proxytype* is a subclass of :class:`BaseProxy` which is used to create
1726 :attr:`proxytype._exposed_` is used instead if it exists.) In the case
1735 :attr:`proxytype._method_to_typeid_` is used instead if it exists.) If a
/third_party/curl/lib/vssh/
Dlibssh2.c3300 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in ssh_connect()
/third_party/python/Lib/test/
D_test_multiprocessing.py2849 MyManager.register('baz', callable=baz, proxytype=IteratorProxy)