Lines Matching refs:fci_cache

122 	zend_fcall_info_cache fci_cache;  member
1479 zend_fcall_info_cache fci_cache; local
1482 Z_PARAM_FUNC(fci, fci_cache)
1488 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1504 zend_fcall_info_cache fci_cache; local
1507 Z_PARAM_FUNC(fci, fci_cache)
1514 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1528 zend_fcall_info_cache fci_cache; local
1532 Z_PARAM_FUNC(fci, fci_cache)
1544 if (called_scope && fci_cache.calling_scope &&
1545 instanceof_function(called_scope, fci_cache.calling_scope)) {
1546 fci_cache.called_scope = called_scope;
1549 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1564 zend_fcall_info_cache fci_cache; local
1568 Z_PARAM_FUNC(fci, fci_cache)
1577 if (called_scope && fci_cache.calling_scope &&
1578 instanceof_function(called_scope, fci_cache.calling_scope)) {
1579 fci_cache.called_scope = called_scope;
1582 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1591 static void fci_addref(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1594 if (fci_cache->object) {
1595 GC_ADDREF(fci_cache->object);
1599 static void fci_release(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) argument
1602 if (fci_cache->object) {
1603 zend_object_release(fci_cache->object);
1612 fci_release(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1620 fci_release(&tick_function_entry->fci, &tick_function_entry->fci_cache);
1632 …ll_status = zend_call_function(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cache);
1650 zend_call_function(&tick_fe->fci, &tick_fe->fci_cache);
1722 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &entry.fci, &entry.fci_cache, &params, &param_cou…
1726 fci_addref(&entry.fci, &entry.fci_cache);
2309 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &tick_fe.fci, &tick_fe.fci_cache, &params, &param…
2314 fci_addref(&tick_fe.fci, &tick_fe.fci_cache);
2337 Z_PARAM_FUNC(tick_fe.fci, tick_fe.fci_cache)