Lines Matching refs:fci

4782 	zend_fcall_info fci;  local
4785 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.par…
4789 fci.retval_ptr_ptr = &retval_ptr;
4791 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4792 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr);
4795 if (fci.params) {
4796 efree(fci.params);
4806 zend_fcall_info fci; local
4809 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "fa/", &fci, &fci_cache, &params) == FAILURE)…
4813 zend_fcall_info_args(&fci, params TSRMLS_CC);
4814 fci.retval_ptr_ptr = &retval_ptr;
4816 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4817 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr);
4820 zend_fcall_info_args_clear(&fci, 1);
4912 zend_fcall_info fci; local
4915 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.par…
4923 fci.retval_ptr_ptr = &retval_ptr;
4930 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4931 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr);
4934 if (fci.params) {
4935 efree(fci.params);
4945 zend_fcall_info fci; local
4948 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "fa/", &fci, &fci_cache, &params) == FAILURE)…
4952 zend_fcall_info_args(&fci, params TSRMLS_CC);
4953 fci.retval_ptr_ptr = &retval_ptr;
4960 …if (zend_call_function(&fci, &fci_cache TSRMLS_CC) == SUCCESS && fci.retval_ptr_ptr && *fci.retval…
4961 COPY_PZVAL_TO_ZVAL(*return_value, *fci.retval_ptr_ptr);
4964 zend_fcall_info_args_clear(&fci, 1);