Lines Matching refs:args
203 zval **args = safe_emalloc(description_len == 0 ? 3 : 4, sizeof(zval **), 0); in PHP_FUNCTION() local
209 MAKE_STD_ZVAL(args[0]); in PHP_FUNCTION()
210 MAKE_STD_ZVAL(args[1]); in PHP_FUNCTION()
211 MAKE_STD_ZVAL(args[2]); in PHP_FUNCTION()
213 ZVAL_STRING(args[0], SAFE_STRING(filename), 1); in PHP_FUNCTION()
214 ZVAL_LONG (args[1], lineno); in PHP_FUNCTION()
215 ZVAL_STRING(args[2], SAFE_STRING(myeval), 1); in PHP_FUNCTION()
222 call_user_function(CG(function_table), NULL, ASSERTG(callback), retval, 3, args TSRMLS_CC); in PHP_FUNCTION()
224 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION()
227 MAKE_STD_ZVAL(args[3]); in PHP_FUNCTION()
228 ZVAL_STRINGL(args[3], SAFE_STRING(description), description_len, 1); in PHP_FUNCTION()
230 call_user_function(CG(function_table), NULL, ASSERTG(callback), retval, 4, args TSRMLS_CC); in PHP_FUNCTION()
232 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION()
236 efree(args); in PHP_FUNCTION()