Lines Matching refs:msg

435 static void _php_list_set_error_structure(xmlErrorPtr error, const char *msg)  in _php_list_set_error_structure()  argument
455 error_copy.message = xmlStrdup(msg); in _php_list_set_error_structure()
468 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg TSRMLS_DC) in php_libxml_ctx_error_level()
476 …php_error_docref(NULL TSRMLS_CC, level, "%s in %s, line: %d", msg, parser->input->filename, parser… in php_libxml_ctx_error_level()
478 php_error_docref(NULL TSRMLS_CC, level, "%s in Entity, line: %d", msg, parser->input->line); in php_libxml_ctx_error_level()
483 void php_libxml_issue_error(int level, const char *msg TSRMLS_DC) in php_libxml_issue_error()
486 _php_list_set_error_structure(NULL, msg); in php_libxml_issue_error()
488 php_error_docref(NULL TSRMLS_CC, level, "%s", msg); in php_libxml_issue_error()
492 static void php_libxml_internal_error_handler(int error_type, void *ctx, const char **msg, va_list … in php_libxml_internal_error_handler() argument
499 len = vspprintf(&buf, 0, *msg, ap); in php_libxml_internal_error_handler()
531 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...) in php_libxml_ctx_error() argument
534 va_start(args, msg); in php_libxml_ctx_error()
535 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
539 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...) in php_libxml_ctx_warning() argument
542 va_start(args, msg); in php_libxml_ctx_warning()
543 php_libxml_internal_error_handler(PHP_LIBXML_CTX_WARNING, ctx, &msg, args); in php_libxml_ctx_warning()
554 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...) in php_libxml_error_handler() argument
557 va_start(args, msg); in php_libxml_error_handler()
558 php_libxml_internal_error_handler(PHP_LIBXML_ERROR, ctx, &msg, args); in php_libxml_error_handler()