Home
last modified time | relevance | path

Searched refs:ServerProxy (Results 1 – 23 of 23) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py305 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 …]
Dtest_xmlrpc_net.py17 server = xmlrpclib.ServerProxy("http://buildbot.python.org/all/xmlrpc/")
/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py490 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/
Dxmlrpclib.rst42 .. 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 …]
Dsimplexmlrpcserver.rst192 s = xmlrpclib.ServerProxy('http://localhost:8000')
216 server = ServerProxy("http://localhost:8000")
/external/python/cpython3/Doc/library/
Dxmlrpc.client.rst35 .. 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 …]
Dxmlrpc.server.rst186 s = xmlrpc.client.ServerProxy('http://localhost:8000')
267 server = ServerProxy("http://localhost:8000")
/external/autotest/site_utils/rpm_control_system/
Drpm_client.py68 client = six.moves.xmlrpc_client.ServerProxy(
144 client = six.moves.xmlrpc_client.ServerProxy(
148 client = six.moves.xmlrpc_client.ServerProxy(
/external/autotest/server/hosts/
Drpc_server_tracker.py182 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)
Dservo_host.py350 self._local._per_thread_proxy = six.moves.xmlrpc_client.ServerProxy(remote)
/external/python/cpython2/Misc/NEWS.d/
D2.7.9.rst47 Add a context argument to xmlrpclib.ServerProxy.
/external/autotest/client/common_lib/feedback/
Dtester_feedback_client.py64 self._rpc_proxy = six.moves.xmlrpc_client.ServerProxy('http://%s' % self._remote_addr)
/external/autotest/client/cros/multimedia/
Dmultimedia_xmlrpc_server.py143 s = six.moves.xmlrpc_client.ServerProxy('http://localhost:%d' %
/external/autotest/server/cros/ap_configurators/
Dstatic_ap_configurator.py82 self.rpm_client = xmlrpclib.ServerProxy(RPM_FRONTEND_SERVER,
/external/python/cpython2/Lib/
Dxmlrpclib.py1540 class ServerProxy: class
1637 Server = ServerProxy
1644 server = ServerProxy("http://localhost:8000")
/external/python/cpython3/Lib/xmlrpc/
Dclient.py1402 class ServerProxy: class
1507 Server = ServerProxy
1517 server = ServerProxy("http://localhost:8000")
/external/autotest/client/cros/chameleon/
Dchameleon.py164 chameleond_proxy = six.moves.xmlrpc_client.ServerProxy(remote, allow_none=True)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a2.rst348 :class:`xmlrpc.client.ServerProxy`, :class:`xmlrpc.client.Transport` and
D3.10.0a7.rst296 :class:`xmlrpc.client.ServerProxy` no longer ignores query and fragment in
D3.5.0a1.rst1357 Add a context argument to xmlrpclib.ServerProxy constructor.
4270 xmlrpc.client.ServerProxy is now a context manager.
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2064 The :class:`client.ServerProxy <xmlrpc.client.ServerProxy>` class now supports
2068 The :class:`client.ServerProxy <xmlrpc.client.ServerProxy>` constructor now accepts
D3.8.rst1445 :class:`xmlrpc.client.ServerProxy` now supports an optional *headers* keyword
/external/python/cpython3/Misc/
DHISTORY1115 - Issue #22960: Add a context argument to xmlrpclib.ServerProxy constructor.