Searched defs:fci (Results 1 - 25 of 31) 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
/PHP_5_4/ext/spl/
H A Dspl_iterators.c1506 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Of", &zobject, ce_inner, &cfi->fci, &cfi->fcc) == FAILURE) {
1511 if (cfi->fci.function_name) {
1512 Z_ADDREF_P(cfi->fci.function_name);
1514 if (cfi->fci.object_ptr) {
1515 Z_ADDREF_P(cfi->fci.object_ptr);
1901 spl_instantiate_arg_ex2(Z_OBJCE_P(getThis()), &return_value, 0, retval, intern->u.cbfilter->fci.function_name TSRMLS_CC);
1927 zend_fcall_info *fci = &intern->u.cbfilter->fci; local
1953 fci->retval_ptr_ptr = &result;
1954 fci
3605 zend_fcall_info fci; member in struct:__anon207
[all...]
H A Dspl_iterators.h122 zend_fcall_info fci; member in struct:_spl_cbfilter_it_intern
H A Dspl_directory.c2092 zend_fcall_info fci; local
2111 fci.size = sizeof(fci);
2112 fci.function_table = EG(function_table);
2113 fci.object_ptr = NULL;
2114 fci.function_name = &z_fname;
2115 fci.retval_ptr_ptr = &retval;
2116 fci.param_count = num_args;
2117 fci.params = params;
2118 fci
[all...]
/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
/PHP_5_4/ext/standard/
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/sybase_ct/
H A Dphp_sybase_ct.c2191 zend_fcall_info fci = empty_fcall_info; local
2198 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f!|r", &fci, &cache, &sybase_link_index) == FAILURE) {
2223 if (ZEND_FCI_INITIALIZED(fci)) {
2225 **callback = *fci.function_name;
/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...]
H A Dphp_output.h124 zend_fcall_info fci; member in struct:_php_output_handler_user_func_t
/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_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_exceptions.c582 zend_fcall_info fci; local
602 fci.size = sizeof(fci);
603 fci.function_table = &Z_OBJCE_P(exception)->function_table;
604 fci.function_name = &fname;
605 fci.symbol_table = NULL;
606 fci.object_ptr = exception;
607 fci.retval_ptr_ptr = &trace;
608 fci.param_count = 0;
609 fci
[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...]
/PHP_5_4/ext/phar/
H A Dutil.c1659 zend_fcall_info fci; local
1695 if (FAILURE == zend_fcall_info_init(openssl, &fci, &fcc TSRMLS_CC)) {
1697 if (FAILURE == zend_fcall_info_init(openssl, 0, &fci, &fcc, NULL, NULL TSRMLS_CC)) {
1710 fci.param_count = 3;
1711 fci.params = zp;
1727 fci.retval_ptr_ptr = &retval_ptr;
1729 if (FAILURE == zend_call_function(&fci, &fcc TSRMLS_CC)) {

Completed in 50 milliseconds

12