Searched refs:fci (Results 1 - 25 of 34) sorted by relevance

12

/PHP_5_4/ext/dom/
H A Dxpath.c81 zend_fcall_info fci; local
116 fci.param_count = nargs - 1;
117 if (fci.param_count > 0) {
118 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0);
119 args = safe_emalloc(fci.param_count, sizeof(zval *), 0);
177 fci.params[i] = &args[i];
180 fci.size = sizeof(fci);
181 fci
[all...]
/PHP_5_4/ext/pdo/
H A Dpdo_dbh.c458 zend_fcall_info fci; local
462 fci.size = sizeof(zend_fcall_info);
463 fci.function_table = &dbstmt_ce->function_table;
464 fci.function_name = NULL;
465 fci.object_ptr = object;
466 fci.symbol_table = NULL;
467 fci.retval_ptr_ptr = &retval;
472 fci.param_count = 0;
473 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0);
476 fci
[all...]
H A Dpdo_stmt.c745 zend_fcall_info * fci = &stmt->fetch.cls.fci; local
748 fci->size = sizeof(zend_fcall_info);
756 fci->function_table = &ce->function_table;
757 fci->function_name = NULL;
758 fci->symbol_table = NULL;
759 fci->retval_ptr_ptr = &stmt->fetch.cls.retval_ptr;
764 fci->param_count = 0;
765 fci->params = safe_emalloc(sizeof(zval**), ht->nNumOfElements, 0);
768 fci
791 make_callable_ex(pdo_stmt_t *stmt, zval *callable, zend_fcall_info * fci, zend_fcall_info_cache * fcc, int num_args TSRMLS_DC) argument
818 zend_fcall_info * fci = &stmt->fetch.cls.fci; local
[all...]
H A Dphp_pdo_driver.h612 zend_fcall_info fci; member in struct:_pdo_stmt_t::__anon145::__anon146
619 zend_fcall_info fci; member in struct:_pdo_stmt_t::__anon145::__anon147
/PHP_5_4/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h34 zend_fcall_info fci; member in struct:pdo_sqlite_fci
H A Dsqlite_driver.c328 fc->fci.size = sizeof(fc->fci);
329 fc->fci.function_table = EG(function_table);
330 fc->fci.function_name = cb;
331 fc->fci.symbol_table = NULL;
332 fc->fci.object_ptr = NULL;
333 fc->fci.retval_ptr_ptr = &retval;
334 fc->fci.param_count = fake_argc;
384 fc->fci.params = zargs;
387 if ((ret = zend_call_function(&fc->fci,
[all...]
/PHP_5_4/ext/spl/
H A Dspl_iterators.h122 zend_fcall_info fci; member in struct:_spl_cbfilter_it_intern
/PHP_5_4/ext/sqlite3/
H A Dphp_sqlite3_structs.h50 zend_fcall_info fci; member in struct:php_sqlite3_fci
71 struct php_sqlite3_fci fci; member in struct:_php_sqlite3_collation
H A Dsqlite3.c698 fc->fci.size = sizeof(fc->fci);
699 fc->fci.function_table = EG(function_table);
700 fc->fci.function_name = cb;
701 fc->fci.symbol_table = NULL;
702 fc->fci.object_ptr = NULL;
703 fc->fci.retval_ptr_ptr = &retval;
704 fc->fci.param_count = fake_argc;
756 fc->fci.params = zargs;
758 if ((ret = zend_call_function(&fc->fci,
[all...]
/PHP_5_4/ext/standard/
H A Darray.c4108 zend_fcall_info fci; local
4114 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "af|z", &input, &fci, &fci_cache, &initial) == FAILURE) {
4138 fci.retval_ptr_ptr = &retval;
4139 fci.param_count = 2;
4140 fci.no_separation = 0;
4148 fci.params = args;
4150 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && retval) {
4177 zend_fcall_info fci = empty_fcall_info; local
4183 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|f", &array, &fci, &fci_cache) == FAILURE) {
4194 fci
4246 zend_fcall_info fci = empty_fcall_info; local
[all...]
H A Dbasic_functions.c4720 zend_fcall_info fci; local
4723 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) {
4727 fci.retval_ptr_ptr = &retval_ptr;
4729 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval_ptr_ptr) {
4730 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr);
4733 if (fci
4744 zend_fcall_info fci; local
4850 zend_fcall_info fci; local
4883 zend_fcall_info fci; local
[all...]
/PHP_5_4/ext/xml/
H A Dxml.c513 zend_fcall_info fci; local
520 fci.size = sizeof(fci);
521 fci.function_table = EG(function_table);
522 fci.function_name = handler;
523 fci.symbol_table = NULL;
524 fci.object_ptr = parser->object;
525 fci.retval_ptr_ptr = &retval;
526 fci.param_count = argc;
527 fci
[all...]
/PHP_5_4/ext/xsl/
H A Dxsltprocessor.c189 zend_fcall_info fci; local
231 fci.param_count = nargs - 1;
232 if (fci.param_count > 0) {
233 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0);
234 args = safe_emalloc(fci.param_count, sizeof(zval *), 0);
295 fci.params[i] = &args[i];
298 fci.size = sizeof(fci);
299 fci
[all...]
/PHP_5_4/main/
H A DSAPI.c158 zend_fcall_info fci; local
161 fci.size = sizeof(fci);
162 fci.function_table = EG(function_table);
163 fci.object_ptr = NULL;
164 fci.function_name = SG(callback_func);
165 fci.retval_ptr_ptr = &retval_ptr;
166 fci.param_count = 0;
167 fci.params = NULL;
168 fci
[all...]
/PHP_5_4/main/streams/
H A Duserspace.c301 zend_fcall_info fci; local
305 fci.size = sizeof(fci);
306 fci.function_table = &uwrap->ce->function_table;
307 fci.function_name = NULL;
308 fci.symbol_table = NULL;
309 fci.object_ptr = object;
310 fci.retval_ptr_ptr = &retval_ptr;
311 fci.param_count = 0;
312 fci
[all...]
/PHP_5_4/ext/libxml/
H A Dlibxml.c272 libxml_globals->entity_loader.fci.size = 0;
276 static void _php_libxml_destroy_fci(zend_fcall_info *fci) argument
278 if (fci->size > 0) {
279 zval_ptr_dtor(&fci->function_name);
280 if (fci->object_ptr != NULL) {
281 zval_ptr_dtor(&fci->object_ptr);
283 fci->size = 0;
563 zend_fcall_info *fci; local
566 fci = &LIBXML(entity_loader).fci;
1081 zend_fcall_info fci; local
[all...]
H A Dphp_libxml.h47 zend_fcall_info fci; member in struct:_php_libxml_entity_resolver
/PHP_5_4/Zend/
H A Dzend_interfaces.c37 zend_fcall_info fci; local
47 fci.size = sizeof(fci);
48 /*fci.function_table = NULL; will be read form zend_class_entry of object if needed */
49 fci.object_ptr = object_pp ? *object_pp : NULL;
50 fci.function_name = &z_fname;
51 fci.retval_ptr_ptr = retval_ptr_ptr ? retval_ptr_ptr : &retval;
52 fci.param_count = param_count;
53 fci.params = params;
54 fci
[all...]
H A Dzend_API.c606 zend_fcall_info *fci = va_arg(*va, zend_fcall_info *); local
611 fci->size = 0;
616 if (zend_fcall_info_init(*arg, 0, fci, fcc, NULL, &is_callable_error TSRMLS_CC) == SUCCESS) {
3170 ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC) /* {{{ */ argument
3176 fci->size = sizeof(*fci);
3177 fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table);
3178 fci->object_ptr = fcc->object_ptr;
3179 fci->function_name = callable;
3180 fci
3190 zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem) argument
3202 zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) argument
3211 zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) argument
3219 zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC) argument
3308 zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval_ptr_ptr, zval *args TSRMLS_DC) argument
[all...]
H A Dzend_execute_API.c738 zend_fcall_info fci; local
740 fci.size = sizeof(fci);
741 fci.function_table = function_table;
742 fci.object_ptr = object_pp ? *object_pp : NULL;
743 fci.function_name = function_name;
744 fci.retval_ptr_ptr = retval_ptr_ptr;
745 fci.param_count = param_count;
746 fci.params = params;
747 fci
754 zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC) argument
[all...]
H A Dzend_API.h231 #define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0)
455 * fci->retval_ptr_ptr = NULL;
457 * fci->param_count = 0;
458 * fci->params = NULL;
462 ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC);
464 /** Clear argumens connected with zend_fcall_info *fci
467 ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem);
469 /** Save current arguments from zend_fcall_info *fci
472 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, in
[all...]
/PHP_5_4/ext/reflection/
H A Dphp_reflection.c1371 zend_fcall_info fci; local
1397 fci.size = sizeof(fci);
1398 fci.function_table = NULL;
1399 fci.function_name = NULL;
1400 fci.symbol_table = NULL;
1401 fci.object_ptr = reflector_ptr;
1402 fci.retval_ptr_ptr = &retval_ptr;
1403 fci.param_count = ctor_argc;
1404 fci
1901 zend_fcall_info fci; local
1961 zend_fcall_info fci; local
2826 zend_fcall_info fci; local
2930 zend_fcall_info fci; local
4197 zend_fcall_info fci; local
4296 zend_fcall_info fci; local
[all...]
/PHP_5_4/ext/mysqli/
H A Dmysqli.c1262 zend_fcall_info fci; local
1270 fci.size = sizeof(fci);
1271 fci.function_table = &ce->function_table;
1272 fci.function_name = NULL;
1273 fci.symbol_table = NULL;
1274 fci.object_ptr = return_value;
1275 fci.retval_ptr_ptr = &retval_ptr;
1281 fci.param_count = 0;
1282 fci
[all...]
/PHP_5_4/ext/curl/
H A Dinterface.c1020 zend_fcall_info fci; local
1031 fci.size = sizeof(fci);
1032 fci.function_table = EG(function_table);
1033 fci.object_ptr = NULL;
1034 fci.function_name = t->func_name;
1035 fci.retval_ptr_ptr = &retval_ptr;
1036 fci.param_count = 2;
1037 fci.params = argv;
1038 fci
1088 zend_fcall_info fci; local
1163 zend_fcall_info fci; local
1244 zend_fcall_info fci; local
[all...]
/PHP_5_4/ext/mysql/
H A Dphp_mysql.c2158 zend_fcall_info fci; local
2166 fci.size = sizeof(fci);
2167 fci.function_table = &ce->function_table;
2168 fci.function_name = NULL;
2169 fci.symbol_table = NULL;
2170 fci.object_ptr = return_value;
2171 fci.retval_ptr_ptr = &retval_ptr;
2177 fci.param_count = 0;
2178 fci
[all...]

Completed in 79 milliseconds

12