Lines Matching +defs:next +defs:line
193 newnv(const char *name, const char *str, void *ptr, long long i, struct nvlist *next)
198 nv->nv_next = next;
224 struct nvlist *next;
226 for (; nv != NULL; nv = next) {
227 next = nv->nv_next;
271 struct defoptlist *next;
274 next = dl->dl_next;
281 dl = next;
320 struct loclist *next;
323 next = ll->ll_next;
326 ll = next;
346 attrlist_cons(struct attrlist *next, struct attr *a)
351 al->al_next = next;
367 struct attrlist *next;
370 next = al->al_next;
375 al = next;
481 cfgxwarn(const char *file, int line, const char *fmt, ...)
486 cfgvxwarn(file, line, fmt, ap);
491 cfgvxdbg(const char *file, int line, const char *fmt, va_list ap)
493 cfgvxmsg(file, line, "debug: ", fmt, ap);
497 cfgvxwarn(const char *file, int line, const char *fmt, va_list ap)
499 cfgvxmsg(file, line, "warning: ", fmt, ap);
504 * and line number.
522 cfgxerror(const char *file, int line, const char *fmt, ...)
527 cfgvxerror(file, line, fmt, ap);
535 cfgvxerror(const char *file, int line, const char *fmt, va_list ap)
537 cfgvxmsg(file, line, "", fmt, ap);
562 cfgvxmsg(const char *file, int line, const char *msgclass, const char *fmt,
566 (void)fprintf(stderr, "%s:%d: %s", file, line, msgclass);