| /PHP_5_3/ext/curl/ |
| H A D | interface.c | 1014 zend_fcall_info fci; local 1025 fci.size = sizeof(fci); 1026 fci.function_table = EG(function_table); 1027 fci.object_ptr = NULL; 1028 fci.function_name = t->func_name; 1029 fci.retval_ptr_ptr = &retval_ptr; 1030 fci.param_count = 2; 1031 fci.params = argv; 1032 fci 1082 zend_fcall_info fci; local 1157 zend_fcall_info fci; local 1238 zend_fcall_info fci; local [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | xpath.c | 81 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_3/ext/pdo/ |
| H A D | pdo_dbh.c | 456 zend_fcall_info fci; local 460 fci.size = sizeof(zend_fcall_info); 461 fci.function_table = &dbstmt_ce->function_table; 462 fci.function_name = NULL; 463 fci.object_ptr = object; 464 fci.symbol_table = NULL; 465 fci.retval_ptr_ptr = &retval; 470 fci.param_count = 0; 471 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); 474 fci [all...] |
| H A D | pdo_stmt.c | 745 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 D | php_pdo_driver.h | 617 zend_fcall_info fci; member in struct:_pdo_stmt_t::__anon124::__anon125 624 zend_fcall_info fci; member in struct:_pdo_stmt_t::__anon124::__anon126
|
| /PHP_5_3/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 34 zend_fcall_info fci; member in struct:pdo_sqlite_fci
|
| H A D | sqlite_driver.c | 328 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_3/ext/pgsql/ |
| H A D | pgsql.c | 2528 zend_fcall_info fci; local 2536 fci.size = sizeof(fci); 2537 fci.function_table = &ce->function_table; 2538 fci.function_name = NULL; 2539 fci.symbol_table = NULL; 2540 fci.object_ptr = return_value; 2541 fci.retval_ptr_ptr = &retval_ptr; 2547 fci.param_count = 0; 2548 fci [all...] |
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 1321 zend_fcall_info fci; local 1347 fci.size = sizeof(fci); 1348 fci.function_table = NULL; 1349 fci.function_name = NULL; 1350 fci.symbol_table = NULL; 1351 fci.object_ptr = reflector_ptr; 1352 fci.retval_ptr_ptr = &retval_ptr; 1353 fci.param_count = ctor_argc; 1354 fci 1749 zend_fcall_info fci; local 1809 zend_fcall_info fci; local 2561 zend_fcall_info fci; local 2665 zend_fcall_info fci; local 3902 zend_fcall_info fci; local 3983 zend_fcall_info fci; local [all...] |
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 2377 zend_fcall_info fci; local 2427 fci.size = sizeof(fci); 2428 fci.function_table = &ce->function_table; 2429 fci.function_name = NULL; 2430 fci.symbol_table = NULL; 2431 fci.object_ptr = return_value; 2432 fci.retval_ptr_ptr = &retval_ptr; 2438 fci.param_count = 0; 2439 fci [all...] |
| /PHP_5_3/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 50 zend_fcall_info fci; member in struct:php_sqlite3_fci 71 struct php_sqlite3_fci fci; member in struct:_php_sqlite3_collation
|
| H A D | sqlite3.c | 698 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; 752 fc->fci.params = zargs; 754 if ((ret = zend_call_function(&fc->fci, [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | array.c | 4097 zend_fcall_info fci; local 4103 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "af|z", &input, &fci, &fci_cache, &initial) == FAILURE) { 4127 fci.retval_ptr_ptr = &retval; 4128 fci.param_count = 2; 4129 fci.no_separation = 0; 4137 fci.params = args; 4139 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && retval) { 4166 zend_fcall_info fci = empty_fcall_info; local 4172 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|f", &array, &fci, &fci_cache) == FAILURE) { 4183 fci 4235 zend_fcall_info fci = empty_fcall_info; local [all...] |
| H A D | basic_functions.c | 4780 zend_fcall_info fci; local 4783 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) { 4787 fci.retval_ptr_ptr = &retval_ptr; 4789 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval_ptr_ptr) { 4790 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr); 4793 if (fci 4804 zend_fcall_info fci; local 4910 zend_fcall_info fci; local 4943 zend_fcall_info fci; local [all...] |
| /PHP_5_3/ext/xml/ |
| H A D | xml.c | 512 zend_fcall_info fci; local 519 fci.size = sizeof(fci); 520 fci.function_table = EG(function_table); 521 fci.function_name = handler; 522 fci.symbol_table = NULL; 523 fci.object_ptr = parser->object; 524 fci.retval_ptr_ptr = &retval; 525 fci.param_count = argc; 526 fci [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | xsltprocessor.c | 180 zend_fcall_info fci; local 222 fci.param_count = nargs - 1; 223 if (fci.param_count > 0) { 224 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); 225 args = safe_emalloc(fci.param_count, sizeof(zval *), 0); 286 fci.params[i] = &args[i]; 289 fci.size = sizeof(fci); 290 fci [all...] |
| /PHP_5_3/main/streams/ |
| H A D | userspace.c | 299 zend_fcall_info fci; local 303 fci.size = sizeof(fci); 304 fci.function_table = &uwrap->ce->function_table; 305 fci.function_name = NULL; 306 fci.symbol_table = NULL; 307 fci.object_ptr = us->object; 308 fci.retval_ptr_ptr = &retval_ptr; 309 fci.param_count = 0; 310 fci [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 581 zend_fcall_info *fci = va_arg(*va, zend_fcall_info *); local 586 fci->size = 0; 591 if (zend_fcall_info_init(*arg, 0, fci, fcc, NULL, &is_callable_error TSRMLS_CC) == SUCCESS) { 2925 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 2931 fci->size = sizeof(*fci); 2932 fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table); 2933 fci->object_ptr = fcc->object_ptr; 2934 fci->function_name = callable; 2935 fci 2945 zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem) argument 2957 zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) argument 2966 zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) argument 2974 zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC) argument 3063 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 D | zend_execute_API.c | 746 zend_fcall_info fci; local 748 fci.size = sizeof(fci); 749 fci.function_table = function_table; 750 fci.object_ptr = object_pp ? *object_pp : NULL; 751 fci.function_name = function_name; 752 fci.retval_ptr_ptr = retval_ptr_ptr; 753 fci.param_count = param_count; 754 fci.params = params; 755 fci 762 zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC) argument [all...] |
| H A D | zend_interfaces.c | 37 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 D | zend_API.h | 222 #define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0) 443 * fci->retval_ptr_ptr = NULL; 445 * fci->param_count = 0; 446 * fci->params = NULL; 450 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); 452 /** Clear argumens connected with zend_fcall_info *fci 455 ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem); 457 /** Save current arguments from zend_fcall_info *fci 460 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, in [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 2098 zend_fcall_info fci; local 2117 fci.size = sizeof(fci); 2118 fci.function_table = EG(function_table); 2119 fci.object_ptr = NULL; 2120 fci.function_name = &z_fname; 2121 fci.retval_ptr_ptr = &retval; 2122 fci.param_count = num_args; 2123 fci.params = params; 2124 fci [all...] |
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli.c | 1264 zend_fcall_info fci; local 1272 fci.size = sizeof(fci); 1273 fci.function_table = &ce->function_table; 1274 fci.function_name = NULL; 1275 fci.symbol_table = NULL; 1276 fci.object_ptr = return_value; 1277 fci.retval_ptr_ptr = &retval_ptr; 1283 fci.param_count = 0; 1284 fci [all...] |
| /PHP_5_3/ext/phar/ |
| H A D | util.c | 1660 zend_fcall_info fci; local 1696 if (FAILURE == zend_fcall_info_init(openssl, &fci, &fcc TSRMLS_CC)) { 1698 if (FAILURE == zend_fcall_info_init(openssl, 0, &fci, &fcc, NULL, NULL TSRMLS_CC)) { 1711 fci.param_count = 3; 1712 fci.params = zp; 1728 fci.retval_ptr_ptr = &retval_ptr; 1730 if (FAILURE == zend_call_function(&fci, &fcc TSRMLS_CC)) {
|
| /PHP_5_3/ext/mysql/ |
| H A D | php_mysql.c | 2120 zend_fcall_info fci; local 2128 fci.size = sizeof(fci); 2129 fci.function_table = &ce->function_table; 2130 fci.function_name = NULL; 2131 fci.symbol_table = NULL; 2132 fci.object_ptr = return_value; 2133 fci.retval_ptr_ptr = &retval_ptr; 2139 fci.param_count = 0; 2140 fci [all...] |