Searched refs:ProxyHandler (Results 1 – 24 of 24) sorted by relevance
/external/autotest/client/site_tests/policy_ProxySettings/ |
D | policy_ProxySettings.py | 16 class ProxyHandler(StreamRequestHandler): class 82 self._server = ThreadedProxyServer(server_address, ProxyHandler)
|
/external/autotest/client/site_tests/network_ProxyResolver/ |
D | network_ProxyResolver.py | 24 class ProxyHandler(StreamRequestHandler): class 83 self._server = ThreadedHitServer(server_address, ProxyHandler)
|
/external/autotest/client/common_lib/ |
D | file_utils.py | 141 proxy_handler = urllib2.ProxyHandler(proxies)
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 79 :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/'})
|
D | urllib.rst | 310 ``ProxyHandler`` explicitly, or make sure the variable name is in
|
/external/python/apitools/apitools/base/py/ |
D | util.py | 67 o = urllib_request.build_opener(urllib_request.ProxyHandler({})).open(
|
D | credentials_lib.py | 221 opener = urllib.request.build_opener(urllib.request.ProxyHandler({}))
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 1059 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"))
|
D | test_urllib2_localnet.py | 350 handler = urllib2.ProxyHandler({"http" : proxy_url}) 446 proxy_handler = urllib2.ProxyHandler({})
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1346 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com:3128")) 1364 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) 1379 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) 1389 ph = urllib.request.ProxyHandler(dict(https="proxy.example.com:3128")) 1405 ph = urllib.request.ProxyHandler(dict(https='proxy.example.com:3128')) 1485 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com:3128"))
|
D | test_urllib2_localnet.py | 347 handler = urllib.request.ProxyHandler({"http" : proxy_url})
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 89 :class:`ProxyHandler` is default installed and makes sure the requests are 96 :class:`ProxyHandler` objects. 138 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy 180 ``ProxyHandler`` explicitly, or make sure the variable name is in 295 .. class:: ProxyHandler(proxies=None) 872 ProxyHandler Objects 876 .. method:: ProxyHandler.protocol_open(request) 879 The :class:`ProxyHandler` will have a method :meth:`protocol_open` for every 1240 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment 1245 This example replaces the default :class:`ProxyHandler` with one that uses [all …]
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | ProtocolNegotiators.java | 50 import io.netty.handler.proxy.ProxyHandler; 223 ProxyHandler proxyHandler, ProtocolNegotiator.Handler handler) {
|
/external/python/cpython2/Doc/howto/ |
D | urllib2.rst | 494 -- ``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/ |
D | urllib2.rst | 517 -- ``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/ |
D | urllib2.py | 493 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 735 class ProxyHandler(BaseHandler): class
|
/external/googletest/googletest/scripts/ |
D | upload.py | 361 opener.add_handler(urllib2.ProxyHandler())
|
/external/googletest/googlemock/scripts/ |
D | upload.py | 361 opener.add_handler(urllib2.ProxyHandler())
|
/external/google-breakpad/src/testing/scripts/ |
D | upload.py | 361 opener.add_handler(urllib2.ProxyHandler())
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | upload.py | 361 opener.add_handler(urllib2.ProxyHandler())
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 585 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 793 class ProxyHandler(BaseHandler): class
|
/external/python/six/documentation/ |
D | index.rst | 779 * :class:`py2:urllib2.ProxyHandler`
|
/external/python/cpython2/Misc/ |
D | HISTORY | 4112 inserting a "dummy" HTTPHandler after a ProxyHandler when building an
|
/external/python/cpython3/Misc/ |
D | HISTORY | 21496 inserting a "dummy" HTTPHandler after a ProxyHandler when building an
|