Lines Matching refs:ap
49 va_list ap; in die() local
50 va_start(ap, fmt); in die()
51 vfprintf(stderr, fmt, ap); in die()
52 va_end(ap); in die()
56 static void vmaybe_write_file(bool enoent_ok, char *filename, char *fmt, va_list ap) in vmaybe_write_file() argument
63 buf_len = vsnprintf(buf, sizeof(buf), fmt, ap); in vmaybe_write_file()
96 va_list ap; in maybe_write_file() local
98 va_start(ap, fmt); in maybe_write_file()
99 vmaybe_write_file(true, filename, fmt, ap); in maybe_write_file()
100 va_end(ap); in maybe_write_file()
106 va_list ap; in write_file() local
108 va_start(ap, fmt); in write_file()
109 vmaybe_write_file(false, filename, fmt, ap); in write_file()
110 va_end(ap); in write_file()