Lines Matching refs:msgid
544 verror_at(int msgid, const pos_t *pos, va_list ap)
547 if (is_suppressed[msgid])
553 (void)vfprintf(out, msgs[msgid], ap);
554 (void)fprintf(out, " [%d]\n", msgid);
560 vwarning_at(int msgid, const pos_t *pos, va_list ap)
563 if (is_suppressed[msgid])
566 debug_step("%s: lwarn=%d msgid=%d", __func__, lwarn, msgid);
567 if (lwarn == LWARN_NONE || lwarn == msgid)
574 (void)vfprintf(out, msgs[msgid], ap);
575 (void)fprintf(out, " [%d]\n", msgid);
581 vmessage_at(int msgid, const pos_t *pos, va_list ap)
584 if (is_suppressed[msgid])
590 (void)vfprintf(out, msgs[msgid], ap);
591 (void)fprintf(out, " [%d]\n", msgid);
596 (error_at)(int msgid, const pos_t *pos, ...)
601 verror_at(msgid, pos, ap);
606 (error)(int msgid, ...)
610 va_start(ap, msgid);
611 verror_at(msgid, &curr_pos, ap);
645 (warning_at)(int msgid, const pos_t *pos, ...)
650 vwarning_at(msgid, pos, ap);
655 (warning)(int msgid, ...)
659 va_start(ap, msgid);
660 vwarning_at(msgid, &curr_pos, ap);
665 (message_at)(int msgid, const pos_t *pos, ...)
670 vmessage_at(msgid, pos, ap);
675 (c99ism)(int msgid, ...)
682 va_start(ap, msgid);
685 verror_at(msgid, &curr_pos, ap);
687 vwarning_at(msgid, &curr_pos, ap);
692 (c11ism)(int msgid, ...)
699 va_start(ap, msgid);
700 verror_at(msgid, &curr_pos, ap);
705 (c23ism)(int msgid, ...)
711 va_start(ap, msgid);
712 verror_at(msgid, &curr_pos, ap);
717 (gnuism)(int msgid, ...)
723 va_start(ap, msgid);
725 verror_at(msgid, &curr_pos, ap);
727 vwarning_at(msgid, &curr_pos, ap);