Lines Matching refs:msg

472 static void _php_list_set_error_structure(xmlErrorPtr error, const char *msg)  in _php_list_set_error_structure()  argument
492 error_copy.message = xmlStrdup(msg); in _php_list_set_error_structure()
505 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg TSRMLS_DC) in php_libxml_ctx_error_level()
513 …php_error_docref(NULL TSRMLS_CC, level, "%s in %s, line: %d", msg, parser->input->filename, parser… in php_libxml_ctx_error_level()
515 php_error_docref(NULL TSRMLS_CC, level, "%s in Entity, line: %d", msg, parser->input->line); in php_libxml_ctx_error_level()
520 void php_libxml_issue_error(int level, const char *msg TSRMLS_DC) in php_libxml_issue_error()
523 _php_list_set_error_structure(NULL, msg); in php_libxml_issue_error()
525 php_error_docref(NULL TSRMLS_CC, level, "%s", msg); in php_libxml_issue_error()
529 static void php_libxml_internal_error_handler(int error_type, void *ctx, const char **msg, va_list … in php_libxml_internal_error_handler() argument
536 len = vspprintf(&buf, 0, *msg, ap); in php_libxml_internal_error_handler()
714 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...) in php_libxml_ctx_error() argument
717 va_start(args, msg); in php_libxml_ctx_error()
718 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
722 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...) in php_libxml_ctx_warning() argument
725 va_start(args, msg); in php_libxml_ctx_warning()
726 php_libxml_internal_error_handler(PHP_LIBXML_CTX_WARNING, ctx, &msg, args); in php_libxml_ctx_warning()
737 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...) in php_libxml_error_handler() argument
740 va_start(args, msg); in php_libxml_error_handler()
741 php_libxml_internal_error_handler(PHP_LIBXML_ERROR, ctx, &msg, args); in php_libxml_error_handler()