Lines Matching refs:fci
436 zend_fcall_info fci; in pdo_stmt_construct() local
440 fci.size = sizeof(zend_fcall_info); in pdo_stmt_construct()
441 ZVAL_UNDEF(&fci.function_name); in pdo_stmt_construct()
442 fci.object = Z_OBJ_P(object); in pdo_stmt_construct()
443 fci.retval = &retval; in pdo_stmt_construct()
444 fci.param_count = 0; in pdo_stmt_construct()
445 fci.params = NULL; in pdo_stmt_construct()
446 fci.no_separation = 1; in pdo_stmt_construct()
448 zend_fcall_info_args(&fci, ctor_args); in pdo_stmt_construct()
456 if (zend_call_function(&fci, &fcc) != FAILURE) { in pdo_stmt_construct()
460 zend_fcall_info_args_clear(&fci, 1); in pdo_stmt_construct()