Lines Matching refs:xRequest

712 	XMLRPC_REQUEST xRequest = NULL;  in PHP_FUNCTION()  local
726 xRequest = XMLRPC_RequestNew(); in PHP_FUNCTION()
728 if (xRequest) { in PHP_FUNCTION()
729 XMLRPC_RequestSetOutputOptions(xRequest, &out.xmlrpc_out); in PHP_FUNCTION()
731 XMLRPC_RequestSetRequestType(xRequest, xmlrpc_request_response); in PHP_FUNCTION()
733 XMLRPC_RequestSetMethodName(xRequest, method); in PHP_FUNCTION()
734 XMLRPC_RequestSetRequestType(xRequest, xmlrpc_request_call); in PHP_FUNCTION()
737 XMLRPC_RequestSetData(xRequest, PHP_to_XMLRPC(vals TSRMLS_CC)); in PHP_FUNCTION()
740 outBuf = XMLRPC_REQUEST_ToXML(xRequest, 0); in PHP_FUNCTION()
745 XMLRPC_RequestFree(xRequest, 1); in PHP_FUNCTION()
928 static XMLRPC_VALUE php_xmlrpc_callback(XMLRPC_SERVER server, XMLRPC_REQUEST xRequest, void* data) … in php_xmlrpc_callback() argument
940 ZVAL_STRING(pData->xmlrpc_method, XMLRPC_RequestGetMethodName(xRequest), 1); in php_xmlrpc_callback()
941 xmlrpc_params = XMLRPC_to_PHP(XMLRPC_RequestGetData(xRequest)); in php_xmlrpc_callback()
1103 XMLRPC_REQUEST xRequest; in PHP_FUNCTION() local
1129 xRequest = XMLRPC_REQUEST_FromXML(rawxml, rawxml_len, &input_opts); in PHP_FUNCTION()
1131 if (xRequest) { in PHP_FUNCTION()
1132 const char* methodname = XMLRPC_RequestGetMethodName(xRequest); in PHP_FUNCTION()
1148 xAnswer = XMLRPC_ServerCallMethod(server->server_ptr, xRequest, &data); in PHP_FUNCTION()
1166 XMLRPC_REQUEST_OUTPUT_OPTIONS opts = XMLRPC_RequestGetOutputOptions(xRequest); in PHP_FUNCTION()
1201 XMLRPC_RequestFree(xRequest, 1); in PHP_FUNCTION()