Lines Matching defs:ap
543 verror_at(int msgid, const pos_t *pos, va_list ap)
552 (void)vfprintf(out, msgs[msgid], ap);
559 vwarning_at(int msgid, const pos_t *pos, va_list ap)
573 (void)vfprintf(out, msgs[msgid], ap);
580 vmessage_at(int msgid, const pos_t *pos, va_list ap)
589 (void)vfprintf(out, msgs[msgid], ap);
597 va_list ap;
599 va_start(ap, pos);
600 verror_at(msgid, pos, ap);
601 va_end(ap);
607 va_list ap;
609 va_start(ap, msgid);
610 verror_at(msgid, &curr_pos, ap);
611 va_end(ap);
646 va_list ap;
648 va_start(ap, pos);
649 vwarning_at(msgid, pos, ap);
650 va_end(ap);
656 va_list ap;
658 va_start(ap, msgid);
659 vwarning_at(msgid, &curr_pos, ap);
660 va_end(ap);
666 va_list ap;
668 va_start(ap, pos);
669 vmessage_at(msgid, pos, ap);
670 va_end(ap);
676 va_list ap;
681 va_start(ap, msgid);
684 verror_at(msgid, &curr_pos, ap);
686 vwarning_at(msgid, &curr_pos, ap);
687 va_end(ap);
693 va_list ap;
698 va_start(ap, msgid);
699 verror_at(msgid, &curr_pos, ap);
700 va_end(ap);
706 va_list ap;
710 va_start(ap, msgid);
711 verror_at(msgid, &curr_pos, ap);
712 va_end(ap);
718 va_list ap;
722 va_start(ap, msgid);
724 verror_at(msgid, &curr_pos, ap);
726 vwarning_at(msgid, &curr_pos, ap);
727 va_end(ap);
773 va_list ap;
777 va_start(ap, query_id);
778 (void)vfprintf(out, queries[query_id], ap);
779 va_end(ap);