Lines Matching refs:warning_message
3973 …nitialize(php_timezone_obj *tzobj, const char *tz, size_t tz_len, char **warning_message) /* {{{ */ in timezone_initialize() argument
3980 if (warning_message) { in timezone_initialize()
3981 spprintf(warning_message, 0, "Timezone must not contain null bytes"); in timezone_initialize()
3989 if (warning_message) { in timezone_initialize()
3990 spprintf(warning_message, 0, "Timezone offset is out of range (%s)", orig_tz); in timezone_initialize()
3998 if (warning_message) { in timezone_initialize()
3999 spprintf(warning_message, 0, "Unknown or bad timezone (%s)", orig_tz); in timezone_initialize()
4006 if (warning_message) { in timezone_initialize()
4007 spprintf(warning_message, 0, "Unknown or bad timezone (%s)", orig_tz); in timezone_initialize()
4024 char *warning_message; in PHP_FUNCTION() local
4031 if (!timezone_initialize(tzobj, ZSTR_VAL(tz), ZSTR_LEN(tz), &warning_message)) { in PHP_FUNCTION()
4032 php_error_docref(NULL, E_WARNING, "%s", warning_message); in PHP_FUNCTION()
4033 efree(warning_message); in PHP_FUNCTION()