Searched refs:fci_cache (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_4/ext/curl/ |
| H A D | php_curl.h | 84 zend_fcall_info_cache fci_cache; member in struct:__anon34 94 zend_fcall_info_cache fci_cache; member in struct:__anon35 103 zend_fcall_info_cache fci_cache; member in struct:__anon36
|
| H A D | interface.c | 1042 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); 1117 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); 1191 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); 1267 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); 1997 ch->handlers->write->fci_cache = empty_fcall_info_cache; 2006 ch->handlers->read->fci_cache = empty_fcall_info_cache; 2017 ch->handlers->progress->fci_cache = empty_fcall_info_cache; 2026 ch->handlers->write_header->fci_cache = empty_fcall_info_cache;
|
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 4109 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local 4114 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "af|z", &input, &fci, &fci_cache, &initial) == FAILURE) { 4150 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && retval) { 4178 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local 4183 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|f", &array, &fci, &fci_cache) == FAILURE) { 4207 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && retval) { 4247 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local 4251 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f!+", &fci, &fci_cache, &arrays, &n_arrays) == FAILURE) { 4337 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) != SUCCESS || !result) {
|
| H A D | basic_functions.c | 4721 zend_fcall_info_cache fci_cache; local 4723 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) { 4729 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval_ptr_ptr) { 4745 zend_fcall_info_cache fci_cache; local 4747 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "fa/", &fci, &fci_cache, ¶ms) == FAILURE) { 4754 if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval_ptr_ptr) { 4851 zend_fcall_info_cache fci_cache; local 4853 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) { 4864 instanceof_function(EG(called_scope), fci_cache.calling_scope TSRMLS_CC)) { 4865 fci_cache 4884 zend_fcall_info_cache fci_cache; local [all...] |
| /PHP_5_4/main/ |
| H A D | SAPI.c | 144 SG(fci_cache) = empty_fcall_info_cache; 171 error = zend_call_function(&fci, &SG(fci_cache) TSRMLS_CC);
|
| H A D | SAPI.h | 134 zend_fcall_info_cache fci_cache; member in struct:_sapi_globals_struct
|
| /PHP_5_4/Zend/ |
| H A D | zend_execute_API.c | 752 int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC) /* {{{ */ 799 if (!fci_cache || !fci_cache->initialized) { 803 if (!fci_cache) { 804 fci_cache = &fci_cache_local; 807 if (!zend_is_callable_ex(fci->function_name, fci->object_ptr, IS_CALLABLE_CHECK_SILENT, &callable_name, NULL, fci_cache, &error TSRMLS_CC)) { 827 EX(function_state).function = fci_cache->function_handler; 828 calling_scope = fci_cache->calling_scope; 829 called_scope = fci_cache->called_scope; 830 fci->object_ptr = fci_cache [all...] |
| H A D | zend_API.h | 506 ZEND_API int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC);
|
Completed in 31 milliseconds