Lines Matching refs:xRequest

671 	XMLRPC_REQUEST xRequest = NULL;  in PHP_FUNCTION()  local
685 xRequest = XMLRPC_RequestNew(); in PHP_FUNCTION()
687 if (xRequest) { in PHP_FUNCTION()
688 XMLRPC_RequestSetOutputOptions(xRequest, &out.xmlrpc_out); in PHP_FUNCTION()
690 XMLRPC_RequestSetRequestType(xRequest, xmlrpc_request_response); in PHP_FUNCTION()
692 XMLRPC_RequestSetMethodName(xRequest, method); in PHP_FUNCTION()
693 XMLRPC_RequestSetRequestType(xRequest, xmlrpc_request_call); in PHP_FUNCTION()
696 XMLRPC_RequestSetData(xRequest, PHP_to_XMLRPC(vals)); in PHP_FUNCTION()
699 outBuf = XMLRPC_REQUEST_ToXML(xRequest, 0); in PHP_FUNCTION()
708 XMLRPC_RequestFree(xRequest, 1); in PHP_FUNCTION()
874 static XMLRPC_VALUE php_xmlrpc_callback(XMLRPC_SERVER server, XMLRPC_REQUEST xRequest, void* data) … in php_xmlrpc_callback() argument
885 ZVAL_STRING(&pData->xmlrpc_method, XMLRPC_RequestGetMethodName(xRequest)); in php_xmlrpc_callback()
886 XMLRPC_to_PHP(XMLRPC_RequestGetData(xRequest), &xmlrpc_params); in php_xmlrpc_callback()
1030 XMLRPC_REQUEST xRequest; in PHP_FUNCTION() local
1058 xRequest = XMLRPC_REQUEST_FromXML(rawxml, rawxml_len, &input_opts); in PHP_FUNCTION()
1060 if (xRequest) { in PHP_FUNCTION()
1061 const char* methodname = XMLRPC_RequestGetMethodName(xRequest); in PHP_FUNCTION()
1077 xAnswer = XMLRPC_ServerCallMethod(server->server_ptr, xRequest, &data); in PHP_FUNCTION()
1093 XMLRPC_REQUEST_OUTPUT_OPTIONS opts = XMLRPC_RequestGetOutputOptions(xRequest); in PHP_FUNCTION()
1129 XMLRPC_RequestFree(xRequest, 1); in PHP_FUNCTION()