Lines Matching refs:args

186 		zval callback, args[4], return_value;  in call_php()  local
206 ZVAL_NULL(&args[i]); in call_php()
218 ZVAL_STRING(&args[i], (char*)argv[i]->dsc_address); in call_php()
223 ZVAL_STRINGL(&args[i], (char*)argv[i]->dsc_address, argv[i]->dsc_length); in call_php()
228 ZVAL_STRINGL(&args[i], ((PARAMVARY*)argv[i]->dsc_address)->vary_string, in call_php()
234 ZVAL_LONG(&args[i], *(short*)argv[i]->dsc_address); in call_php()
236 ZVAL_DOUBLE(&args[i], in call_php()
243 ZVAL_LONG(&args[i], *(ISC_LONG*)argv[i]->dsc_address); in call_php()
245 ZVAL_DOUBLE(&args[i], in call_php()
254 ZVAL_LONG(&args[i], (zend_long)l); in call_php()
256 ZVAL_DOUBLE(&args[i], ((double)l)/scales[-argv[i]->dsc_scale]); in call_php()
261 ZVAL_DOUBLE(&args[i], *(float*)argv[i]->dsc_address); in call_php()
265 ZVAL_DOUBLE(&args[i], *(double*)argv[i]->dsc_address); in call_php()
270 ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.dateformat"), &t),1); in call_php()
275 ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.timeformat"), &t),1); in call_php()
280 ZVAL_STRINGL(&args[i], d, strftime(d, sizeof(d), INI_STR("ibase.timestampformat"), &t)); in call_php()
289 &callback, &return_value, argc, args)) { in call_php()
301 zval_dtor(&args[i]); in call_php()
357 PARAMDSC *args[1] = { arg1 }; in udf_call_php1() local
358 call_php(name, r, 1, args); in udf_call_php1()
363 PARAMDSC *args[2] = { arg1, arg2 }; in udf_call_php2() local
364 call_php(name, r, 2, args); in udf_call_php2()
369 PARAMDSC *args[3] = { arg1, arg2, arg3 }; in udf_call_php3() local
370 call_php(name, r, 3, args); in udf_call_php3()
376 PARAMDSC *args[4] = { arg1, arg2, arg3, arg4 }; in udf_call_php4() local
377 call_php(name, r, 4, args); in udf_call_php4()
383 PARAMDSC *args[5] = { arg1, arg2, arg3, arg4, arg5 }; in udf_call_php5() local
384 call_php(name, r, 5, args); in udf_call_php5()
390 PARAMDSC *args[6] = { arg1, arg2, arg3, arg4, arg5, arg6 }; in udf_call_php6() local
391 call_php(name, r, 6, args); in udf_call_php6()
397 PARAMDSC *args[7] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }; in udf_call_php7() local
398 call_php(name, r, 7, args); in udf_call_php7()
404 PARAMDSC *args[8] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }; in udf_call_php8() local
405 call_php(name, r, 8, args); in udf_call_php8()