Lines Matching refs:fci
1451 zend_fcall_info fci; member
1468 zend_fcall_info fci = context->fci; in php_array_walk() local
1480 fci.retval = &retval; in php_array_walk()
1481 fci.param_count = userdata ? 3 : 2; in php_array_walk()
1482 fci.params = args; in php_array_walk()
1554 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1601 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1620 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6443 zend_fcall_info fci; local
6450 Z_PARAM_FUNC(fci, fci_cache)
6471 fci.retval = &retval;
6472 fci.param_count = 2;
6477 fci.params = args;
6479 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
6506 zend_fcall_info fci = empty_fcall_info; local
6513 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6523 if (ZEND_FCI_INITIALIZED(fci)) {
6525 fci.retval = &retval;
6527 fci.param_count = 2;
6530 fci.param_count = 1;
6548 fci.params = args;
6550 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6584 static zend_result php_array_find(const HashTable *array, zend_fcall_info fci, zend_fcall_info_cach… argument
6604 ZEND_ASSERT(ZEND_FCI_INITIALIZED(fci));
6606 fci.retval = &retval;
6607 fci.param_count = 2;
6608 fci.params = args;
6620 zend_result result = zend_call_function(&fci, &fci_cache);
6662 zend_fcall_info fci; local
6667 Z_PARAM_FUNC(fci, fci_cache)
6670 if (php_array_find(Z_ARR_P(array), fci, fci_cache, NULL, return_value, false) != SUCCESS) {
6684 zend_fcall_info fci; local
6689 Z_PARAM_FUNC(fci, fci_cache)
6692 if (php_array_find(Z_ARR_P(array), fci, fci_cache, return_value, NULL, false) != SUCCESS) {
6706 zend_fcall_info fci; local
6711 Z_PARAM_FUNC(fci, fci_cache)
6714 if (php_array_find(Z_ARR_P(array), fci, fci_cache, return_value, NULL, false) != SUCCESS) {
6726 zend_fcall_info fci; local
6731 Z_PARAM_FUNC(fci, fci_cache)
6734 if (php_array_find(Z_ARR_P(array), fci, fci_cache, return_value, NULL, true) != SUCCESS) {
6748 zend_fcall_info fci = empty_fcall_info; local
6754 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6771 if (!ZEND_FCI_INITIALIZED(fci) || !maxlen) {
6780 fci.retval = &result;
6781 fci.param_count = 1;
6782 fci.params = &arg;
6785 ret = zend_call_function(&fci, &fci_cache);
6813 if (!ZEND_FCI_INITIALIZED(fci)) {
6893 fci.retval = &result;
6894 fci.param_count = n_arrays;
6895 fci.params = params;
6897 if (zend_call_function(&fci, &fci_cache) != SUCCESS || Z_TYPE(result) == IS_UNDEF) {