Lines Matching refs:fci
457 zend_fcall_info fci; in pdo_stmt_construct() local
461 fci.size = sizeof(zend_fcall_info); in pdo_stmt_construct()
462 ZVAL_UNDEF(&fci.function_name); in pdo_stmt_construct()
463 fci.object = Z_OBJ_P(object); in pdo_stmt_construct()
464 fci.retval = &retval; in pdo_stmt_construct()
465 fci.param_count = 0; in pdo_stmt_construct()
466 fci.params = NULL; in pdo_stmt_construct()
467 fci.no_separation = 1; in pdo_stmt_construct()
469 zend_fcall_info_args(&fci, ctor_args); in pdo_stmt_construct()
475 if (zend_call_function(&fci, &fcc) != FAILURE) { in pdo_stmt_construct()
479 zend_fcall_info_args_clear(&fci, 1); in pdo_stmt_construct()