Lines Matching refs:fci_cache
126 zend_fcall_info_cache fci_cache; member
1468 zend_fcall_info_cache fci_cache; local
1471 Z_PARAM_FUNC(fci, fci_cache)
1477 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1493 zend_fcall_info_cache fci_cache; local
1496 Z_PARAM_FUNC(fci, fci_cache)
1503 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1517 zend_fcall_info_cache fci_cache; local
1521 Z_PARAM_FUNC(fci, fci_cache)
1533 if (called_scope && fci_cache.calling_scope &&
1534 instanceof_function(called_scope, fci_cache.calling_scope)) {
1535 fci_cache.called_scope = called_scope;
1538 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1553 zend_fcall_info_cache fci_cache; local
1557 Z_PARAM_FUNC(fci, fci_cache)
1566 if (called_scope && fci_cache.calling_scope &&
1567 instanceof_function(called_scope, fci_cache.calling_scope)) {
1568 fci_cache.called_scope = called_scope;
1571 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1580 static void fci_addref(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1583 if (fci_cache->object) {
1584 GC_ADDREF(fci_cache->object);
1588 static void fci_release(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1591 if (fci_cache->object) {
1592 zend_object_release(fci_cache->object);
1601 fci_release(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1609 fci_release(&tick_function_entry->fci, &tick_function_entry->fci_cache);
1621 …ll_status = zend_call_function(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1639 zend_call_function(&tick_fe->fci, &tick_fe->fci_cache);
1711 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &entry.fci, &entry.fci_cache, ¶ms, ¶m_cou…
1715 fci_addref(&entry.fci, &entry.fci_cache);
2302 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &tick_fe.fci, &tick_fe.fci_cache, ¶ms, ¶m…
2307 fci_addref(&tick_fe.fci, &tick_fe.fci_cache);
2330 Z_PARAM_FUNC(tick_fe.fci, tick_fe.fci_cache)