Searched refs:proxytype (Results 1 – 13 of 13) sorted by relevance
/third_party/curl/lib/ |
D | url.c | 522 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 …]
|
D | socks.c | 280 (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()
|
D | cf-h1-proxy.c | 243 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()
|
D | urldata.h | 861 unsigned char proxytype; /* curl_proxytype: what kind of proxy that is in member 1731 unsigned char proxytype; /* what kind of proxy: curl_proxytype */ member
|
D | connect.c | 1228 if(IS_HTTPS_PROXY(cf->conn->http_proxy.proxytype) in cf_setup_connect()
|
D | setopt.c | 1173 data->set.proxytype = (unsigned char)(curl_proxytype)arg; in Curl_vsetopt()
|
D | http.c | 1332 || IS_HTTPS_PROXY(conn->http_proxy.proxytype) in Curl_buffer_send()
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 378 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/ |
D | mp_newtype.py | 44 MyManager.register('baz', baz, proxytype=GeneratorProxy)
|
/third_party/curl/lib/vtls/ |
D | vtls.c | 1800 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS2) { in cf_ssl_proxy_create()
|
/third_party/python/Doc/library/ |
D | multiprocessing.rst | 1705 ….. 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/ |
D | libssh2.c | 3300 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in ssh_connect()
|
/third_party/python/Lib/test/ |
D | _test_multiprocessing.py | 2849 MyManager.register('baz', callable=baz, proxytype=IteratorProxy)
|