Lines Matching refs:msg
90 void intl_error_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_error_set_custom_msg() argument
92 if( !msg ) in intl_error_set_custom_msg()
97 php_error_docref( NULL, INTL_G( error_level ), "%s", msg ); in intl_error_set_custom_msg()
99 zend_throw_exception_ex( IntlException_ce_ptr, 0, "%s", msg ); in intl_error_set_custom_msg()
111 err->custom_error_message = copyMsg ? estrdup( msg ) : (char *) msg; in intl_error_set_custom_msg()
161 void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_error_set() argument
164 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_error_set()
169 void intl_errors_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_errors_set() argument
172 intl_errors_set_custom_msg( err, msg, copyMsg ); in intl_errors_set()
187 void intl_errors_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_errors_set_custom_msg() argument
190 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_errors_set_custom_msg()
192 intl_error_set_custom_msg( NULL, msg, copyMsg ); in intl_errors_set_custom_msg()