Lines Matching refs:fci_cache

121 	zend_fcall_info_cache fci_cache;  member
1497 zend_fcall_info_cache fci_cache; local
1500 Z_PARAM_FUNC(fci, fci_cache)
1506 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1522 zend_fcall_info_cache fci_cache; local
1525 Z_PARAM_FUNC(fci, fci_cache)
1532 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1546 zend_fcall_info_cache fci_cache; local
1550 Z_PARAM_FUNC(fci, fci_cache)
1562 if (called_scope && fci_cache.calling_scope &&
1563 instanceof_function(called_scope, fci_cache.calling_scope)) {
1564 fci_cache.called_scope = called_scope;
1567 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1581 zend_fcall_info_cache fci_cache; local
1585 Z_PARAM_FUNC(fci, fci_cache)
1593 if (called_scope && fci_cache.calling_scope &&
1594 instanceof_function(called_scope, fci_cache.calling_scope)) {
1595 fci_cache.called_scope = called_scope;
1598 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1609 static void fci_addref(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1612 if (fci_cache->object) {
1613 GC_ADDREF(fci_cache->object);
1617 static void fci_release(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1620 if (fci_cache->object) {
1621 zend_object_release(fci_cache->object);
1630 fci_release(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1638 fci_release(&tick_function_entry->fci, &tick_function_entry->fci_cache);
1650 …ll_status = zend_call_function(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1668 zend_call_function(&tick_fe->fci, &tick_fe->fci_cache);
1740 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &entry.fci, &entry.fci_cache, &params, &param_cou…
1744 fci_addref(&entry.fci, &entry.fci_cache);
2331 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &tick_fe.fci, &tick_fe.fci_cache, &params, &param…
2336 fci_addref(&tick_fe.fci, &tick_fe.fci_cache);
2359 Z_PARAM_FUNC(tick_fe.fci, tick_fe.fci_cache)