Home
last modified time | relevance | path

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

/external/curl/lib/
Durl.h85 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
89 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
93 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
Durl.c504 set->proxytype = CURLPROXY_HTTP; /* defaults to HTTP proxy */ in Curl_init_userdefined()
885 if((data->proxytype == needle->proxytype) && in proxy_info_matches()
1227 if(needle->http_proxy.proxytype == CURLPROXY_HTTPS) { in ConnectionExists()
1659 conn->http_proxy.proxytype = data->set.proxytype; in allocate_conn()
1660 conn->socks_proxy.proxytype = CURLPROXY_SOCKS4; in allocate_conn()
1667 (conn->http_proxy.proxytype == CURLPROXY_HTTP || in allocate_conn()
1668 conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0 || in allocate_conn()
1669 conn->http_proxy.proxytype == CURLPROXY_HTTPS)) ? in allocate_conn()
2258 curl_proxytype proxytype) argument
2285 proxytype = CURLPROXY_HTTPS;
[all …]
Dhttp_proxy.c54 DEBUGASSERT(conn->http_proxy.proxytype == CURLPROXY_HTTPS); in https_proxy_connect()
76 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in Curl_proxy_connect()
239 (conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) ? "1.0" : "1.1"; in CONNECT()
Dsocks.c195 (conn->socks_proxy.proxytype == CURLPROXY_SOCKS4A) ? TRUE : FALSE; in Curl_SOCKS4()
517 (conn->socks_proxy.proxytype == CURLPROXY_SOCKS5) ? TRUE : FALSE; in Curl_SOCKS5()
Durldata.h797 curl_proxytype proxytype; /* what kind of proxy that is in use */ member
1696 curl_proxytype proxytype; /* what kind of proxy that is in use */ member
Dconnect.c762 switch(conn->socks_proxy.proxytype) { in connect_SOCKS()
Dmulti.c1955 (data->conn->http_proxy.proxytype != CURLPROXY_HTTPS ||
1977 (data->conn->http_proxy.proxytype == CURLPROXY_HTTPS &&
Dsetopt.c1064 data->set.proxytype = (curl_proxytype)arg; in Curl_vsetopt()
Dhttp.c1202 || conn->http_proxy.proxytype == CURLPROXY_HTTPS in Curl_buffer_send()
/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py379 callable, exposed, method_to_typeid, proxytype = \
639 def register(cls, typeid, callable=None, proxytype=None, exposed=None, argument
647 if proxytype is None:
648 proxytype = AutoProxy
650 exposed = exposed or getattr(proxytype, '_exposed_', None)
653 getattr(proxytype, '_method_to_typeid_', None)
661 callable, exposed, method_to_typeid, proxytype
668 proxy = proxytype(
765 proxytype = self._manager._registry[token.typeid][-1]
767 proxy = proxytype(
[all …]
/external/python/httplib2/python3/httplib2/
Dsocks.py120 proxytype=None, addr=None, port=None, rdns=True, username=None, password=None argument
127 _defaultproxy = (proxytype, addr, port, rdns, username, password)
214 proxytype=None, argument
242 proxytype,
/external/python/httplib2/python2/httplib2/
Dsocks.py120 proxytype=None, addr=None, port=None, rdns=True, username=None, password=None argument
127 _defaultproxy = (proxytype, addr, port, rdns, username, password)
214 proxytype=None, argument
242 proxytype,
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py369 callable, exposed, method_to_typeid, proxytype = \
686 def register(cls, typeid, callable=None, proxytype=None, exposed=None, argument
694 if proxytype is None:
695 proxytype = AutoProxy
697 exposed = exposed or getattr(proxytype, '_exposed_', None)
700 getattr(proxytype, '_method_to_typeid_', None)
708 callable, exposed, method_to_typeid, proxytype
715 proxy = proxytype(
815 proxytype = self._manager._registry[token.typeid][-1]
817 proxy = proxytype(
[all …]
/external/python/cpython3/Doc/includes/
Dmp_newtype.py44 MyManager.register('baz', baz, proxytype=GeneratorProxy)
/external/python/cpython2/Doc/includes/
Dmp_newtype.py54 MyManager.register('baz', baz, proxytype=GeneratorProxy)
/external/curl/lib/vtls/
Dvtls.h128 (CURLPROXY_HTTPS == conn->http_proxy.proxytype && \
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1416 ….. method:: register(typeid[, callable[, proxytype[, exposed[, method_to_typeid[, create_method]]]…
1429 *proxytype* is a subclass of :class:`BaseProxy` which is used to create
1436 :attr:`proxytype._exposed_` is used instead if it exists.) In the case
1445 :attr:`proxytype._method_to_typeid_` is used instead if it exists.) If a
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst1697 ….. method:: register(typeid[, callable[, proxytype[, exposed[, method_to_typeid[, create_method]]]…
1711 *proxytype* is a subclass of :class:`BaseProxy` which is used to create
1718 :attr:`proxytype._exposed_` is used instead if it exists.) In the case
1727 :attr:`proxytype._method_to_typeid_` is used instead if it exists.) If a
/external/curl/lib/vssh/
Dlibssh2.c3119 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in ssh_connect()
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1459 MyManager.register('baz', callable=baz, proxytype=IteratorProxy)
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2833 MyManager.register('baz', callable=baz, proxytype=IteratorProxy)