Home
last modified time | relevance | path

Searched refs:fci (Results 1 – 25 of 32) sorted by relevance

12

/PHP-5.3/Zend/
H A Dzend_execute_API.c744 zend_fcall_info fci; in call_user_function_ex() local
746 fci.size = sizeof(fci); in call_user_function_ex()
752 fci.params = params; in call_user_function_ex()
784 switch (fci->size) { in zend_call_function()
840 if (fci->object_ptr && Z_TYPE_P(fci->object_ptr) == IS_OBJECT && in zend_call_function()
901 param = *fci->params[i]; in zend_call_function()
928 if (fci->object_ptr) { in zend_call_function()
956 if (fci->symbol_table) { in zend_call_function()
989 …on *) EX(function_state).function)->handler(fci->param_count, *fci->retval_ptr_ptr, fci->retval_pt… in zend_call_function()
1009 if (fci->object_ptr) { in zend_call_function()
[all …]
H A Dzend_interfaces.c37 zend_fcall_info fci; in zend_call_method() local
47 fci.size = sizeof(fci); in zend_call_method()
49 fci.object_ptr = object_pp ? *object_pp : NULL; in zend_call_method()
50 fci.function_name = &z_fname; in zend_call_method()
52 fci.param_count = param_count; in zend_call_method()
53 fci.params = params; in zend_call_method()
54 fci.no_separation = 1; in zend_call_method()
55 fci.symbol_table = NULL; in zend_call_method()
61 fci.function_table = !object_pp ? EG(function_table) : NULL; in zend_call_method()
62 result = zend_call_function(&fci, NULL TSRMLS_CC); in zend_call_method()
[all …]
H A Dzend_exceptions.c569 zend_fcall_info fci; in ZEND_METHOD() local
589 fci.size = sizeof(fci); in ZEND_METHOD()
590 fci.function_table = &Z_OBJCE_P(exception)->function_table; in ZEND_METHOD()
591 fci.function_name = &fname; in ZEND_METHOD()
592 fci.symbol_table = NULL; in ZEND_METHOD()
593 fci.object_ptr = exception; in ZEND_METHOD()
594 fci.retval_ptr_ptr = &trace; in ZEND_METHOD()
595 fci.param_count = 0; in ZEND_METHOD()
596 fci.params = NULL; in ZEND_METHOD()
597 fci.no_separation = 1; in ZEND_METHOD()
[all …]
H A Dzend_API.c586 fci->size = 0; in zend_parse_arg_impl()
2931 fci->size = sizeof(*fci); in zend_fcall_info_init()
2936 fci->param_count = 0; in zend_fcall_info_init()
2937 fci->params = NULL; in zend_fcall_info_init()
2947 if (fci->params) { in zend_fcall_info_args_clear()
2949 efree(fci->params); in zend_fcall_info_args_clear()
2950 fci->params = NULL; in zend_fcall_info_args_clear()
2962 fci->params = NULL; in zend_fcall_info_args_save()
2990 fci->params = params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_args()
3014 fci->params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_argp()
[all …]
H A Dzend_API.h222 #define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0) argument
450 ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcal…
455 ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem);
460 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params);
464 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params);
469 ZEND_API int zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC);
475 ZEND_API int zend_fcall_info_argp(zend_fcall_info *fci TSRMLS_DC, int argc, zval ***argv);
481 ZEND_API int zend_fcall_info_argv(zend_fcall_info *fci TSRMLS_DC, int argc, va_list *argv);
487 ZEND_API int zend_fcall_info_argn(zend_fcall_info *fci TSRMLS_DC, int argc, ...);
492 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval, …
[all …]
/PHP-5.3/ext/dom/
H A Dxpath.c81 zend_fcall_info fci; in dom_xpath_ext_function_php() local
117 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
118 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); in dom_xpath_ext_function_php()
177 fci.params[i] = &args[i]; in dom_xpath_ext_function_php()
180 fci.size = sizeof(fci); in dom_xpath_ext_function_php()
192 efree(fci.params); in dom_xpath_ext_function_php()
201 fci.symbol_table = NULL; in dom_xpath_ext_function_php()
202 fci.object_ptr = NULL; in dom_xpath_ext_function_php()
204 fci.no_separation = 0; in dom_xpath_ext_function_php()
248 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
[all …]
/PHP-5.3/ext/pdo_sqlite/
H A Dsqlite_driver.c328 fc->fci.size = sizeof(fc->fci); in do_callback()
330 fc->fci.function_name = cb; in do_callback()
331 fc->fci.symbol_table = NULL; in do_callback()
332 fc->fci.object_ptr = NULL; in do_callback()
333 fc->fci.retval_ptr_ptr = &retval; in do_callback()
334 fc->fci.param_count = fake_argc; in do_callback()
384 fc->fci.params = zargs; in do_callback()
492 collation->fc.fci.size = sizeof(collation->fc.fci); in php_sqlite3_collation_callback()
496 collation->fc.fci.object_ptr = NULL; in php_sqlite3_collation_callback()
506 collation->fc.fci.param_count = 2; in php_sqlite3_collation_callback()
[all …]
H A Dphp_pdo_sqlite_int.h34 zend_fcall_info fci; member
/PHP-5.3/ext/xsl/
H A Dxsltprocessor.c180 zend_fcall_info fci; in xsl_ext_function_php() local
223 if (fci.param_count > 0) { in xsl_ext_function_php()
224 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); in xsl_ext_function_php()
286 fci.params[i] = &args[i]; in xsl_ext_function_php()
289 fci.size = sizeof(fci); in xsl_ext_function_php()
301 efree(fci.params); in xsl_ext_function_php()
310 fci.symbol_table = NULL; in xsl_ext_function_php()
311 fci.object_ptr = NULL; in xsl_ext_function_php()
313 fci.no_separation = 0; in xsl_ext_function_php()
357 if (fci.param_count > 0) { in xsl_ext_function_php()
[all …]
/PHP-5.3/ext/curl/
H A Dinterface.c1014 zend_fcall_info fci; in curl_write() local
1025 fci.size = sizeof(fci); in curl_write()
1030 fci.param_count = 2; in curl_write()
1031 fci.params = argv; in curl_write()
1082 zend_fcall_info fci; in curl_progress() local
1100 fci.size = sizeof(fci); in curl_progress()
1106 fci.params = argv; in curl_progress()
1174 fci.size = sizeof(fci); in curl_read()
1180 fci.params = argv; in curl_read()
1250 fci.size = sizeof(fci); in curl_write_header()
[all …]
/PHP-5.3/ext/sqlite3/
H A Dphp_sqlite3_structs.h50 zend_fcall_info fci; member
71 struct php_sqlite3_fci fci; member
H A Dsqlite3.c698 fc->fci.size = sizeof(fc->fci);
752 fc->fci.params = zargs;
863 collation->fci.fci.size = (sizeof(collation->fci.fci));
864 collation->fci.fci.function_table = EG(function_table);
865 collation->fci.fci.function_name = collation->cmp_func;
866 collation->fci.fci.symbol_table = NULL;
867 collation->fci.fci.object_ptr = NULL;
868 collation->fci.fci.retval_ptr_ptr = &retval;
869 collation->fci.fci.param_count = 2;
881 collation->fci.fci.params = zargs;
[all …]
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c1321 zend_fcall_info fci; in _reflection_export() local
1347 fci.size = sizeof(fci); in _reflection_export()
1354 fci.params = params; in _reflection_export()
1388 fci.param_count = 2; in _reflection_export()
1389 fci.params = params; in _reflection_export()
1761 fci.size = sizeof(fci); in ZEND_METHOD()
1828 fci.size = sizeof(fci); in ZEND_METHOD()
2620 fci.size = sizeof(fci); in ZEND_METHOD()
2729 fci.size = sizeof(fci); in ZEND_METHOD()
3919 fci.size = sizeof(fci); in ZEND_METHOD()
[all …]
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c745 zend_fcall_info * fci = &stmt->fetch.cls.fci; in do_fetch_class_prepare() local
757 fci->function_name = NULL; in do_fetch_class_prepare()
758 fci->symbol_table = NULL; in do_fetch_class_prepare()
764 fci->param_count = 0; in do_fetch_class_prepare()
768 fci->params[fci->param_count++] = (zval**)p->pData; in do_fetch_class_prepare()
772 fci->param_count = 0; in do_fetch_class_prepare()
773 fci->params = NULL; in do_fetch_class_prepare()
775 fci->no_separation = 1; in do_fetch_class_prepare()
818 zend_fcall_info * fci = &stmt->fetch.cls.fci; in do_fetch_func_prepare() local
833 if (stmt->fetch.cls.fci.size && stmt->fetch.cls.fci.params) { in do_fetch_opt_finish()
[all …]
H A Dpdo_dbh.c456 zend_fcall_info fci; in pdo_stmt_construct() local
462 fci.function_name = NULL; in pdo_stmt_construct()
463 fci.object_ptr = object; in pdo_stmt_construct()
464 fci.symbol_table = NULL; in pdo_stmt_construct()
470 fci.param_count = 0; in pdo_stmt_construct()
474 fci.params[fci.param_count++] = (zval**)p->pData; in pdo_stmt_construct()
478 fci.param_count = 0; in pdo_stmt_construct()
479 fci.params = NULL; in pdo_stmt_construct()
481 fci.no_separation = 1; in pdo_stmt_construct()
497 if (fci.params) { in pdo_stmt_construct()
[all …]
H A Dphp_pdo_driver.h617 zend_fcall_info fci; member
624 zend_fcall_info fci; member
/PHP-5.3/ext/mysqli/
H A Dmysqli.c1264 zend_fcall_info fci; in php_mysqli_fetch_into_hash() local
1272 fci.size = sizeof(fci); in php_mysqli_fetch_into_hash()
1274 fci.function_name = NULL; in php_mysqli_fetch_into_hash()
1275 fci.symbol_table = NULL; in php_mysqli_fetch_into_hash()
1283 fci.param_count = 0; in php_mysqli_fetch_into_hash()
1287 fci.params[fci.param_count++] = (zval**)p->pData; in php_mysqli_fetch_into_hash()
1301 fci.param_count = 0; in php_mysqli_fetch_into_hash()
1302 fci.params = NULL; in php_mysqli_fetch_into_hash()
1304 fci.no_separation = 1; in php_mysqli_fetch_into_hash()
1319 if (fci.params) { in php_mysqli_fetch_into_hash()
[all …]
/PHP-5.3/main/streams/
H A Duserspace.c299 zend_fcall_info fci; in user_wrapper_opener() local
303 fci.size = sizeof(fci); in user_wrapper_opener()
304 fci.function_table = &uwrap->ce->function_table; in user_wrapper_opener()
305 fci.function_name = NULL; in user_wrapper_opener()
306 fci.symbol_table = NULL; in user_wrapper_opener()
307 fci.object_ptr = us->object; in user_wrapper_opener()
308 fci.retval_ptr_ptr = &retval_ptr; in user_wrapper_opener()
309 fci.param_count = 0; in user_wrapper_opener()
310 fci.params = NULL; in user_wrapper_opener()
311 fci.no_separation = 1; in user_wrapper_opener()
[all …]
/PHP-5.3/ext/mysql/
H A Dphp_mysql.c2120 zend_fcall_info fci; local
2128 fci.size = sizeof(fci);
2130 fci.function_name = NULL;
2131 fci.symbol_table = NULL;
2139 fci.param_count = 0;
2143 fci.params[fci.param_count++] = (zval**)p->pData;
2157 fci.param_count = 0;
2158 fci.params = NULL;
2160 fci.no_separation = 1;
2175 if (fci.params) {
[all …]
/PHP-5.3/ext/standard/
H A Dbasic_functions.c4779 zend_fcall_info fci; local
4782 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.par…
4788 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4792 if (fci.params) {
4793 efree(fci.params);
4813 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4912 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.par…
4927 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4931 if (fci.params) {
4932 efree(fci.params);
[all …]
H A Darray.c4097 zend_fcall_info fci; in PHP_FUNCTION() local
4127 fci.retval_ptr_ptr = &retval; in PHP_FUNCTION()
4128 fci.param_count = 2; in PHP_FUNCTION()
4129 fci.no_separation = 0; in PHP_FUNCTION()
4137 fci.params = args; in PHP_FUNCTION()
4183 fci.no_separation = 0; in PHP_FUNCTION()
4185 fci.param_count = 1; in PHP_FUNCTION()
4194 fci.params = args; in PHP_FUNCTION()
4322 fci.param_count = n_arrays; in PHP_FUNCTION()
4323 fci.params = params; in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/standard/tests/array/
H A Dbug28739.phpt2 Bug #28739 (*diff() and *intersect() not clearing the fci cache before work)
/PHP-5.3/ext/xml/
H A Dxml.c512 zend_fcall_info fci; in xml_call_handler() local
519 fci.size = sizeof(fci); in xml_call_handler()
520 fci.function_table = EG(function_table); in xml_call_handler()
521 fci.function_name = handler; in xml_call_handler()
522 fci.symbol_table = NULL; in xml_call_handler()
523 fci.object_ptr = parser->object; in xml_call_handler()
524 fci.retval_ptr_ptr = &retval; in xml_call_handler()
525 fci.param_count = argc; in xml_call_handler()
526 fci.params = args; in xml_call_handler()
527 fci.no_separation = 0; in xml_call_handler()
[all …]
/PHP-5.3/ext/sqlite/
H A Dsqlite.c2377 zend_fcall_info fci; in PHP_FUNCTION() local
2427 fci.size = sizeof(fci); in PHP_FUNCTION()
2429 fci.function_name = NULL; in PHP_FUNCTION()
2430 fci.symbol_table = NULL; in PHP_FUNCTION()
2438 fci.param_count = 0; in PHP_FUNCTION()
2442 fci.params[fci.param_count++] = (zval**)p->pData; in PHP_FUNCTION()
2456 fci.param_count = 0; in PHP_FUNCTION()
2457 fci.params = NULL; in PHP_FUNCTION()
2459 fci.no_separation = 1; in PHP_FUNCTION()
2474 if (fci.params) { in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/spl/
H A Dspl_directory.c2100 zend_fcall_info fci; in spl_filesystem_file_call() local
2119 fci.size = sizeof(fci); in spl_filesystem_file_call()
2120 fci.function_table = EG(function_table); in spl_filesystem_file_call()
2121 fci.object_ptr = NULL; in spl_filesystem_file_call()
2122 fci.function_name = &z_fname; in spl_filesystem_file_call()
2123 fci.retval_ptr_ptr = &retval; in spl_filesystem_file_call()
2124 fci.param_count = num_args; in spl_filesystem_file_call()
2125 fci.params = params; in spl_filesystem_file_call()
2126 fci.no_separation = 1; in spl_filesystem_file_call()
2127 fci.symbol_table = NULL; in spl_filesystem_file_call()
[all …]

Completed in 176 milliseconds

12