Home
last modified time | relevance | path

Searched defs:XmlRpcValue (Results 1 – 5 of 5) sorted by relevance

/external/xmlrpcpp/src/
DXmlRpcValue.h46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; } in XmlRpcValue() function
47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; } in XmlRpcValue() function
48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; } in XmlRpcValue() function
49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; } in XmlRpcValue() function
51 XmlRpcValue(std::string const& value) : _type(TypeString) in XmlRpcValue() function
54 XmlRpcValue(const char* value) : _type(TypeString) in XmlRpcValue() function
57 XmlRpcValue(struct tm* value) : _type(TypeDateTime) in XmlRpcValue() function
61 XmlRpcValue(void* value, int nBytes) : _type(TypeBase64) in XmlRpcValue() function
67 XmlRpcValue(std::string const& xml, int* offset) : _type(TypeInvalid) in XmlRpcValue() function
71 XmlRpcValue(XmlRpcValue const& rhs) : _type(TypeInvalid) { *this = rhs; } in XmlRpcValue() function
DXmlRpcServerMethod.h18 class XmlRpcValue; variable
DXmlRpcServer.h29 class XmlRpcValue; variable
DXmlRpcClient.h22 class XmlRpcValue; variable
DXmlRpcServer.cpp212 void execute(XmlRpcValue& /* params */, XmlRpcValue& result) in execute() argument