Lines Matching refs:retval

788 	zval* retval = NULL;  in decode_request_worker()  local
798 retval = XMLRPC_to_PHP(XMLRPC_RequestGetData(response)); in decode_request_worker()
808 } else if (retval) { in decode_request_worker()
809 zval_ptr_dtor(&retval); in decode_request_worker()
810 retval = NULL; in decode_request_worker()
818 return retval; in decode_request_worker()
836 zval* retval = decode_request_worker(xml, xml_len, encoding_len ? encoding : NULL, *method); in PHP_FUNCTION() local
837 if (retval) { in PHP_FUNCTION()
838 *return_value = *retval; in PHP_FUNCTION()
839 FREE_ZVAL(retval); in PHP_FUNCTION()
857 zval* retval = decode_request_worker(arg1, arg1_len, arg2_len ? arg2 : NULL, NULL); in PHP_FUNCTION() local
858 if (retval) { in PHP_FUNCTION()
859 *return_value = *retval; in PHP_FUNCTION()
860 FREE_ZVAL(retval); in PHP_FUNCTION()
975 zval retval, **php_function; in php_xmlrpc_introspection_callback() local
990 …if (call_user_function(CG(function_table), NULL, *php_function, &retval, 1, callback_params TSRMLS… in php_xmlrpc_introspection_callback()
995 convert_to_string(&retval); in php_xmlrpc_introspection_callback()
997 xData = XMLRPC_IntrospectionCreateDescription(Z_STRVAL(retval), &err); in php_xmlrpc_introspection_callback()
1013 zval_dtor(&retval); in php_xmlrpc_introspection_callback()
1224 int retval = XMLRPC_ServerAddIntrospectionData(server->server_ptr, xDesc); in PHP_FUNCTION() local
1226 RETURN_LONG(retval); in PHP_FUNCTION()
1237 zval *retval; in PHP_FUNCTION() local
1249 retval = XMLRPC_to_PHP(xVal); in PHP_FUNCTION()
1251 if (retval) { in PHP_FUNCTION()
1252 RETVAL_ZVAL(retval, 1, 1); in PHP_FUNCTION()