Lines Matching refs:zf

578 ZEND_API int zend_verify_arg_error(int error_type, const zend_function *zf, zend_uint arg_num, cons…  in zend_verify_arg_error()  argument
581 const char *fname = zf->common.function_name; in zend_verify_arg_error()
585 if (zf->common.scope) { in zend_verify_arg_error()
587 fclass = zf->common.scope->name; in zend_verify_arg_error()
601 static inline int zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch… in zend_verify_arg_type() argument
607 if (!zf->common.arg_info in zend_verify_arg_type()
608 || arg_num>zf->common.num_args) { in zend_verify_arg_type()
612 cur_arg_info = &zf->common.arg_info[arg_num-1]; in zend_verify_arg_type()
619 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, "none", "" TS… in zend_verify_arg_type()
624 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, "instance of … in zend_verify_arg_type()
628 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, zend_zval_typ… in zend_verify_arg_type()
634 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be of the type array", "", "none",… in zend_verify_arg_type()
638 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be of the type array", "", zend_zv… in zend_verify_arg_type()
644 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be callable", "", "none", "" TSRML… in zend_verify_arg_type()
647 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be callable", "", zend_zval_type_n… in zend_verify_arg_type()