Searched refs:ServerProxy (Results 1 – 23 of 23) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_xmlrpc.py | 305 xmlrpc.client.ServerProxy('https://localhost:9999').bad_function() 346 with xmlrpclib.ServerProxy(url) as p: 755 xmlrpclib.ServerProxy(URL).my_function() 793 p = xmlrpclib.ServerProxy(URL) 805 p = xmlrpclib.ServerProxy(URL) 819 p = xmlrpclib.ServerProxy(URL, encoding='iso-8859-15') 830 p = xmlrpclib.ServerProxy(URL, encoding='ascii') 854 p = xmlrpclib.ServerProxy(URL) 867 p = xmlrpclib.ServerProxy(URL) 881 p = xmlrpclib.ServerProxy(URL) [all …]
|
D | test_xmlrpc_net.py | 17 server = xmlrpclib.ServerProxy("http://buildbot.python.org/all/xmlrpc/")
|
/external/python/cpython2/Lib/test/ |
D | test_xmlrpc.py | 490 p = xmlrpclib.ServerProxy(URL) 504 p = xmlrpclib.ServerProxy(URL) 515 server = xmlrpclib.ServerProxy(u"http://%s:%d/RPC2"%(ADDR, PORT)) 524 p = xmlrpclib.ServerProxy(URL, encoding='iso-8859-15') 536 p = xmlrpclib.ServerProxy(URL, encoding='iso-8859-15') 559 p = xmlrpclib.ServerProxy(URL) 575 p = xmlrpclib.ServerProxy(URL) 589 p = xmlrpclib.ServerProxy(URL) 602 p = xmlrpclib.ServerProxy(URL) 613 p = xmlrpclib.ServerProxy(URL) [all …]
|
/external/python/cpython2/Doc/library/ |
D | xmlrpclib.rst | 42 .. class:: ServerProxy(uri[, transport[, encoding[, verbose[, allow_none[, use_datetime[, context]]… 44 A :class:`ServerProxy` instance is an object that manages communication with a 131 :class:`Server` is retained as an alias for :class:`ServerProxy` for backwards 132 compatibility. New code should use :class:`ServerProxy`. 166 ServerProxy Objects 169 A :class:`ServerProxy` instance has a method corresponding to each remote 177 grouped under the reserved :attr:`~ServerProxy.system` attribute: 180 .. method:: ServerProxy.system.listMethods() 186 .. method:: ServerProxy.system.methodSignature(name) 206 .. method:: ServerProxy.system.methodHelp(name) [all …]
|
D | simplexmlrpcserver.rst | 192 s = xmlrpclib.ServerProxy('http://localhost:8000') 216 server = ServerProxy("http://localhost:8000")
|
/external/python/cpython3/Doc/library/ |
D | xmlrpc.client.rst | 35 .. class:: ServerProxy(uri, transport=None, encoding=None, verbose=False, \ 39 A :class:`ServerProxy` instance is an object that manages communication with a 146 :class:`Server` is retained as an alias for :class:`ServerProxy` for backwards 147 compatibility. New code should use :class:`ServerProxy`. 180 ServerProxy Objects 183 A :class:`ServerProxy` instance has a method corresponding to each remote 191 grouped under the reserved :attr:`~ServerProxy.system` attribute: 194 .. method:: ServerProxy.system.listMethods() 200 .. method:: ServerProxy.system.methodSignature(name) 220 .. method:: ServerProxy.system.methodHelp(name) [all …]
|
D | xmlrpc.server.rst | 186 s = xmlrpc.client.ServerProxy('http://localhost:8000') 267 server = ServerProxy("http://localhost:8000")
|
/external/autotest/site_utils/rpm_control_system/ |
D | rpm_client.py | 68 client = six.moves.xmlrpc_client.ServerProxy( 144 client = six.moves.xmlrpc_client.ServerProxy( 148 client = six.moves.xmlrpc_client.ServerProxy(
|
/external/autotest/server/hosts/ |
D | rpc_server_tracker.py | 182 proxy = six.moves.xmlrpc_client.ServerProxy(rpc_url, allow_none=True) 315 class TimeoutXMLRPCServerProxy(six.moves.xmlrpc_client.ServerProxy): 328 six.moves.xmlrpc_client.ServerProxy.__init__(self, uri, *args, **kwargs)
|
D | servo_host.py | 350 self._local._per_thread_proxy = six.moves.xmlrpc_client.ServerProxy(remote)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.9.rst | 47 Add a context argument to xmlrpclib.ServerProxy.
|
/external/autotest/client/common_lib/feedback/ |
D | tester_feedback_client.py | 64 self._rpc_proxy = six.moves.xmlrpc_client.ServerProxy('http://%s' % self._remote_addr)
|
/external/autotest/client/cros/multimedia/ |
D | multimedia_xmlrpc_server.py | 143 s = six.moves.xmlrpc_client.ServerProxy('http://localhost:%d' %
|
/external/autotest/server/cros/ap_configurators/ |
D | static_ap_configurator.py | 82 self.rpm_client = xmlrpclib.ServerProxy(RPM_FRONTEND_SERVER,
|
/external/python/cpython2/Lib/ |
D | xmlrpclib.py | 1540 class ServerProxy: class 1637 Server = ServerProxy 1644 server = ServerProxy("http://localhost:8000")
|
/external/python/cpython3/Lib/xmlrpc/ |
D | client.py | 1402 class ServerProxy: class 1507 Server = ServerProxy 1517 server = ServerProxy("http://localhost:8000")
|
/external/autotest/client/cros/chameleon/ |
D | chameleon.py | 164 chameleond_proxy = six.moves.xmlrpc_client.ServerProxy(remote, allow_none=True)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a2.rst | 348 :class:`xmlrpc.client.ServerProxy`, :class:`xmlrpc.client.Transport` and
|
D | 3.10.0a7.rst | 296 :class:`xmlrpc.client.ServerProxy` no longer ignores query and fragment in
|
D | 3.5.0a1.rst | 1357 Add a context argument to xmlrpclib.ServerProxy constructor. 4270 xmlrpc.client.ServerProxy is now a context manager.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 2064 The :class:`client.ServerProxy <xmlrpc.client.ServerProxy>` class now supports 2068 The :class:`client.ServerProxy <xmlrpc.client.ServerProxy>` constructor now accepts
|
D | 3.8.rst | 1445 :class:`xmlrpc.client.ServerProxy` now supports an optional *headers* keyword
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1115 - Issue #22960: Add a context argument to xmlrpclib.ServerProxy constructor.
|