Lines Matching refs:arg_num

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
594 …to %s%s%s() must %s%s, %s%s given, called in %s on line %d and defined", arg_num, fclass, fsep, fn… in zend_verify_arg_error()
596 …zend_error(error_type, "Argument %d passed to %s%s%s() must %s%s, %s%s given", arg_num, fclass, fs… 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
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()