Lines Matching refs:fci_cache

121 	zend_fcall_info_cache fci_cache;  member
1454 zend_fcall_info_cache fci_cache; local
1457 Z_PARAM_FUNC(fci, fci_cache)
1463 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1479 zend_fcall_info_cache fci_cache; local
1482 Z_PARAM_FUNC(fci, fci_cache)
1489 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1503 zend_fcall_info_cache fci_cache; local
1507 Z_PARAM_FUNC(fci, fci_cache)
1519 if (called_scope && fci_cache.calling_scope &&
1520 instanceof_function(called_scope, fci_cache.calling_scope)) {
1521 fci_cache.called_scope = called_scope;
1524 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1539 zend_fcall_info_cache fci_cache; local
1543 Z_PARAM_FUNC(fci, fci_cache)
1552 if (called_scope && fci_cache.calling_scope &&
1553 instanceof_function(called_scope, fci_cache.calling_scope)) {
1554 fci_cache.called_scope = called_scope;
1557 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1566 static void fci_addref(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1569 if (fci_cache->object) {
1570 GC_ADDREF(fci_cache->object);
1574 static void fci_release(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1577 if (fci_cache->object) {
1578 zend_object_release(fci_cache->object);
1587 fci_release(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1595 fci_release(&tick_function_entry->fci, &tick_function_entry->fci_cache);
1607 …ll_status = zend_call_function(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1625 zend_call_function(&tick_fe->fci, &tick_fe->fci_cache);
1697 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &entry.fci, &entry.fci_cache, &params, &param_cou…
1701 fci_addref(&entry.fci, &entry.fci_cache);
2284 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &tick_fe.fci, &tick_fe.fci_cache, &params, &param…
2289 fci_addref(&tick_fe.fci, &tick_fe.fci_cache);
2312 Z_PARAM_FUNC(tick_fe.fci, tick_fe.fci_cache)