Home
last modified time | relevance | path

Searched refs:nextTagIs (Results 1 – 7 of 7) sorted by relevance

/external/xmlrpcpp/test/
DFileClient.cpp90 while (XmlRpcUtil::nextTagIs(PARAM_TAG, xml, &offset)) { in parseRequest()
99 (void) XmlRpcUtil::nextTagIs(PARAM_ETAG, xml, &offset); in parseRequest()
104 (void) XmlRpcUtil::nextTagIs(PARAMS_ETAG, xml, &offset); in parseRequest()
/external/xmlrpcpp/
Dxmlrpc++_0.7.patch41 if ((XmlRpcUtil::nextTagIs(PARAMS_TAG,_response,&offset) &&
42 XmlRpcUtil::nextTagIs(PARAM_TAG,_response,&offset)) ||
43 - XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true))
44 + (XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true)))
/external/xmlrpcpp/src/
DXmlRpcClient.cpp395 if ((XmlRpcUtil::nextTagIs(PARAMS_TAG,_response,&offset) && in parseResponse()
396 XmlRpcUtil::nextTagIs(PARAM_TAG,_response,&offset)) || in parseResponse()
397 (XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true))) in parseResponse()
DXmlRpcValue.cpp220 if ( ! XmlRpcUtil::nextTagIs(VALUE_TAG, valueXml, offset)) in fromXml()
480 if ( ! XmlRpcUtil::nextTagIs(DATA_TAG, valueXml, offset)) in arrayFromXml()
490 (void) XmlRpcUtil::nextTagIs(DATA_ETAG, valueXml, offset); in arrayFromXml()
520 while (XmlRpcUtil::nextTagIs(MEMBER_TAG, valueXml, offset)) { in structFromXml()
532 (void) XmlRpcUtil::nextTagIs(MEMBER_ETAG, valueXml, offset); in structFromXml()
DXmlRpcServerConnection.cpp242 while (XmlRpcUtil::nextTagIs(PARAM_TAG, _request, &offset)) { in parseRequest()
244 (void) XmlRpcUtil::nextTagIs(PARAM_ETAG, _request, &offset); in parseRequest()
247 (void) XmlRpcUtil::nextTagIs(PARAMS_ETAG, _request, &offset); in parseRequest()
DXmlRpcUtil.h42 static bool nextTagIs(const char* tag, std::string const& xml, int* offset);
DXmlRpcUtil.cpp134 XmlRpcUtil::nextTagIs(const char* tag, std::string const& xml, int* offset) in nextTagIs() function in XmlRpcUtil