Home
last modified time | relevance | path

Searched refs:ProxyHandler (Results 1 – 25 of 34) sorted by relevance

12

/external/autotest/client/site_tests/policy_ProxySettings/
Dpolicy_ProxySettings.py16 class ProxyHandler(StreamRequestHandler): class
82 self._server = ThreadedProxyServer(server_address, ProxyHandler)
/external/autotest/client/site_tests/network_ProxyResolver/
Dnetwork_ProxyResolver.py24 class ProxyHandler(StreamRequestHandler): class
83 self._server = ThreadedHitServer(server_address, ProxyHandler)
/external/v8/src/builtins/
Dproxy-revoke.tq34 // 6. Set p.[[ProxyHandler]] to null.
Dproxy-constructor.tq38 // 9. Set P.[[ProxyHandler]] to handler.
Dproxy-is-extensible.tq16 // 1. Let handler be O.[[ProxyHandler]].
Dproxy-has-property.tq22 // 2. Let handler be O.[[ProxyHandler]].
Dproxy-prevent-extensions.tq17 // 1. Let handler be O.[[ProxyHandler]].
Dproxy-get-prototype-of.tq16 // 1. Let handler be O.[[ProxyHandler]].
Dproxy-delete-property.tq23 // 2. Let handler be O.[[ProxyHandler]].
Dproxy-get-property.tq24 // 2. Let handler be O.[[ProxyHandler]].
Dproxy-set-prototype-of.tq20 // 2. Let handler be O.[[ProxyHandler]].
Dproxy-set-property.tq40 // 2. Let handler be O.[[ProxyHandler]].
/external/autotest/client/common_lib/
Dfile_utils.py141 proxy_handler = urllib2.ProxyHandler(proxies)
/external/python/cpython2/Doc/library/
Durllib2.rst79 :class:`ProxyHandler` is default installed and makes sure the requests are
105 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy
220 .. class:: ProxyHandler([proxies])
727 ProxyHandler Objects
731 .. method:: ProxyHandler.protocol_open(request)
736 The :class:`ProxyHandler` will have a method :samp:`{protocol}_open` for every
1003 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
1008 This example replaces the default :class:`ProxyHandler` with one that uses
1012 proxy_handler = urllib2.ProxyHandler({'http': 'http://www.example.com:3128/'})
/external/python/apitools/apitools/base/py/
Dutil.py67 o = urllib_request.build_opener(urllib_request.ProxyHandler({})).open(
Dcredentials_lib.py224 opener = urllib.request.build_opener(urllib.request.ProxyHandler({}))
/external/python/cpython2/Lib/test/
Dtest_urllib2.py1059 ph = urllib2.ProxyHandler(dict(http="proxy.example.com:3128"))
1077 ph = urllib2.ProxyHandler(dict(http="proxy.example.com"))
1092 ph = urllib2.ProxyHandler(dict(https='proxy.example.com:3128'))
1107 ph = urllib2.ProxyHandler(dict(https='proxy.example.com:3128'))
1167 ph = urllib2.ProxyHandler(dict(http="proxy.example.com:3128"))
Dtest_urllib2_localnet.py350 handler = urllib2.ProxyHandler({"http" : proxy_url})
446 proxy_handler = urllib2.ProxyHandler({})
/external/python/cpython3/Lib/test/
Dtest_urllib2.py1346 ph = urllib.request.ProxyHandler(d)
1363 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com"))
1378 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com"))
1388 ph = urllib.request.ProxyHandler(dict(https="proxy.example.com:3128"))
1404 ph = urllib.request.ProxyHandler(dict(https='proxy.example.com:3128'))
1484 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com:3128"))
Dtest_urllib2_localnet.py348 handler = urllib.request.ProxyHandler({"http" : proxy_url})
/external/python/cpython3/Doc/library/
Durllib.request.rst89 :class:`ProxyHandler` is default installed and makes sure the requests are
96 :class:`ProxyHandler` objects.
145 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy
187 ``ProxyHandler`` explicitly, or make sure the variable name is in
302 .. class:: ProxyHandler(proxies=None)
899 ProxyHandler Objects
903 .. method:: ProxyHandler.<protocol>_open(request)
906 The :class:`ProxyHandler` will have a method :meth:`<protocol>_open` for every
1267 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
1272 This example replaces the default :class:`ProxyHandler` with one that uses
[all …]
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DProtocolNegotiators.java50 import io.netty.handler.proxy.ProxyHandler;
223 ProxyHandler proxyHandler, ProtocolNegotiator.Handler handler) {
/external/python/cpython2/Doc/howto/
Durllib2.rst494 -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`http_proxy`
512 the ``ProxyHandler``, which is part of the normal handler chain when a proxy
515 ``ProxyHandler``, with no proxies defined. This is done using similar steps to
518 >>> proxy_support = urllib2.ProxyHandler({})
/external/python/cpython3/Doc/howto/
Durllib2.rst517 -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`http_proxy`
535 the ``ProxyHandler``, which is part of the normal handler chain when a proxy
538 ``ProxyHandler``, with no proxies defined. This is done using similar steps to
541 >>> proxy_support = urllib.request.ProxyHandler({})
/external/python/cpython2/Lib/
Durllib2.py493 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
735 class ProxyHandler(BaseHandler): class

12