Lines Matching refs:_response
105 _response = ""; in execute()
274 _response = ""; in writeRequest()
346 _response = bp; in readHeader()
357 if (int(_response.length()) < _contentLength) { in readResponse()
358 if ( ! XmlRpcSocket::nbRead(this->getfd(), _response, &_eof)) { in readResponse()
364 if (int(_response.length()) < _contentLength) { in readResponse()
374 XmlRpcUtil::log(3, "XmlRpcClient::readResponse (read %d bytes)", _response.length()); in readResponse()
375 XmlRpcUtil::log(5, "response:\n%s", _response.c_str()); in readResponse()
389 if ( ! XmlRpcUtil::findTag(METHODRESPONSE_TAG,_response,&offset)) { in parseResponse()
390 …RpcClient::parseResponse: Invalid response - no methodResponse. Response:\n%s", _response.c_str()); in parseResponse()
395 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()
399 if ( ! result.fromXml(_response, &offset)) { in parseResponse()
400 …("Error in XmlRpcClient::parseResponse: Invalid response value. Response:\n%s", _response.c_str()); in parseResponse()
401 _response = ""; in parseResponse()
405 …lient::parseResponse: Invalid response - no param or fault tag. Response:\n%s", _response.c_str()); in parseResponse()
406 _response = ""; in parseResponse()
410 _response = ""; in parseResponse()