OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:XmlRpcServer
(Results
1 - 21
of
21
) sorted by null
/external/xmlrpcpp/src/
XmlRpcServerMethod.h
20
// The
XmlRpcServer
processes client requests to call RPCs
21
class
XmlRpcServer
;
27
XmlRpcServerMethod(std::string const& name,
XmlRpcServer
* server = 0);
43
XmlRpcServer
* _server;
XmlRpcServer.cpp
2
#include "
XmlRpcServer
.h"
13
XmlRpcServer
::
XmlRpcServer
()
21
XmlRpcServer
::~
XmlRpcServer
()
32
XmlRpcServer
::addMethod(XmlRpcServerMethod* method)
39
XmlRpcServer
::removeMethod(XmlRpcServerMethod* method)
48
XmlRpcServer
::removeMethod(const std::string& methodName)
58
XmlRpcServer
::findMethod(const std::string& name) const
70
XmlRpcServer
::bindAndListen(int port, int backlog /*= 5*/
[
all
...]
XmlRpcServerMethod.cpp
3
#include "
XmlRpcServer
.h"
8
XmlRpcServerMethod::XmlRpcServerMethod(std::string const& name,
XmlRpcServer
* server)
XmlRpcServer.h
33
class
XmlRpcServer
: public XmlRpcSource {
36
XmlRpcServer
();
38
virtual ~
XmlRpcServer
();
XmlRpcServerConnection.h
21
class
XmlRpcServer
;
42
XmlRpcServerConnection(int fd,
XmlRpcServer
* server, bool deleteOnClose = false);
76
XmlRpcServer
* _server;
XmlRpcServerConnection.cpp
30
XmlRpcServerConnection::XmlRpcServerConnection(int fd,
XmlRpcServer
* server, bool deleteOnClose /*= false*/) :
/external/xmlrpcpp/test/
HelloServer.cpp
11
XmlRpcServer
s;
17
Hello(
XmlRpcServer
* s) : XmlRpcServerMethod("Hello", s) {}
33
HelloName(
XmlRpcServer
* s) : XmlRpcServerMethod("HelloName", s) {}
48
Sum(
XmlRpcServer
* s) : XmlRpcServerMethod("Sum", s) {}
TestBase64Server.cpp
19
XmlRpcServer
s;
25
TestBase64(
XmlRpcServer
* s) : XmlRpcServerMethod("TestBase64", s) {}
Validator.cpp
9
XmlRpcServer
s;
18
ArrayOfStructsTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.arrayOfStructsTest", s) {}
42
CountTheEntities(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.countTheEntities", s) {}
82
EasyStructTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.easyStructTest", s) {}
99
EchoStructTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.echoStructTest", s) {}
115
ManyTypesTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.manyTypesTest", s) {}
134
ModerateSizeArrayCheck(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.moderateSizeArrayCheck", s) {}
156
NestedStructTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.nestedStructTest", s) {}
175
SimpleStructReturnTest(
XmlRpcServer
* s) : XmlRpcServerMethod("validator1.simpleStructReturnTest", s) {}
/external/autotest/client/cros/
xmlrpc_server.py
16
class
XmlRpcServer
(threading.Thread):
25
server =
XmlRpcServer
(('localhost', 43212))
32
"""Construct an
XmlRpcServer
.
38
super(
XmlRpcServer
, self).__init__()
75
logging.info('
XmlRpcServer
starting...')
87
logging.info('
XmlRpcServer
exited.')
148
"""A super class for XmlRPC delegates used with
XmlRpcServer
.
dark_resume_xmlrpc_server.py
53
server = xmlrpc_server.
XmlRpcServer
(
/external/autotest/client/cros/networking/
apmanager_xmlrpc_server.py
68
server = xmlrpc_server.
XmlRpcServer
('localhost',
android_xmlrpc_server.py
54
class
XmlRpcServer
(threading.Thread):
63
server =
XmlRpcServer
(('localhost', 43212))
70
"""Construct an
XmlRpcServer
.
76
super(
XmlRpcServer
, self).__init__()
106
logging.info('
XmlRpcServer
starting...')
120
logging.info('
XmlRpcServer
exited.')
139
"""Raised when an error is encountered in the
XmlRpcServer
."""
456
server =
XmlRpcServer
('localhost', 9989)
shill_xmlrpc_server.py
596
server = xmlrpc_server.
XmlRpcServer
('localhost',
/external/xmlrpcpp/
Makefile
21
$(SRC)/
XmlRpcServer
.o $(SRC)/XmlRpcServerConnection.o \
/system/connectivity/shill/test-rpc-proxy/
proxy_rpc_server.h
58
class ProxyRpcServer : public XmlRpc::
XmlRpcServer
{
proxy_rpc_server.cc
501
:
XmlRpcServer
(),
516
if (!XmlRpc::
XmlRpcServer
::bindAndListen(server_port_)) {
520
XmlRpc::
XmlRpcServer
::enableIntrospection(true);
572
XmlRpc::
XmlRpcServer
::work(-1.0);
/external/autotest/client/common_lib/cros/
interactive_xmlrpc_server.py
232
server = xmlrpc_server.
XmlRpcServer
(
/external/autotest/client/cros/multimedia/
multimedia_xmlrpc_server.py
105
server = xmlrpc_server.
XmlRpcServer
(
/external/autotest/client/cros/bluetooth/
bluetooth_tester_xmlrpc_server.py
418
server = xmlrpc_server.
XmlRpcServer
(
bluetooth_device_xmlrpc_server.py
754
server = xmlrpc_server.
XmlRpcServer
(
Completed in 1000 milliseconds