Lines Matching refs:zf

576 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
579 const char *fname = zf->common.function_name; in zend_verify_arg_error()
583 if (zf->common.scope) { in zend_verify_arg_error()
585 fclass = zf->common.scope->name; in zend_verify_arg_error()
599 static inline int zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch… in zend_verify_arg_type() argument
605 if (!zf->common.arg_info in zend_verify_arg_type()
606 || arg_num>zf->common.num_args) { in zend_verify_arg_type()
610 cur_arg_info = &zf->common.arg_info[arg_num-1]; in zend_verify_arg_type()
617 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, "none", "" TS… in zend_verify_arg_type()
622 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, "instance of … in zend_verify_arg_type()
626 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, zend_zval_typ… in zend_verify_arg_type()
632 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be of the type array", "", "none",… in zend_verify_arg_type()
636 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be of the type array", "", zend_zv… in zend_verify_arg_type()
642 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be callable", "", "none", "" TSRML… in zend_verify_arg_type()
645 …return zend_verify_arg_error(E_RECOVERABLE_ERROR, zf, arg_num, "be callable", "", zend_zval_type_n… in zend_verify_arg_type()