Lines Matching refs:msg
104 void intl_error_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_error_set_custom_msg() argument
106 if( !msg ) in intl_error_set_custom_msg()
111 php_error_docref( NULL, INTL_G( error_level ), "%s", msg ); in intl_error_set_custom_msg()
113 zend_throw_exception_ex( IntlException_ce_ptr, 0, "%s", msg ); in intl_error_set_custom_msg()
125 err->custom_error_message = copyMsg ? estrdup( msg ) : (char *) msg; in intl_error_set_custom_msg()
183 void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_error_set() argument
186 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_error_set()
193 void intl_errors_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_errors_set() argument
196 intl_errors_set_custom_msg( err, msg, copyMsg ); in intl_errors_set()
213 void intl_errors_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_errors_set_custom_msg() argument
216 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_errors_set_custom_msg()
218 intl_error_set_custom_msg( NULL, msg, copyMsg ); in intl_errors_set_custom_msg()