Lines Matching refs:ap
39 va_list ap; in syslog() local
40 va_start(ap, fmt); in syslog()
41 vsyslog(fac, fmt, ap); in syslog()
42 va_end(ap); in syslog()
46 vsyslog(int fac, const char *fmt, va_list ap) in vsyslog() argument
48 (void)vfprintf(stderr, fmt, ap); in vsyslog()
59 va_list ap; in syslog_ss() local
60 va_start(ap, fmt); in syslog_ss()
61 vsyslog(priority, fmt, ap); in syslog_ss()
62 va_end(ap); in syslog_ss()
66 vsyslog_ss(int priority, struct syslog_data *data, const char *fmt, va_list ap) in vsyslog_ss() argument
68 vsyslog(priority, fmt, ap); in vsyslog_ss()
74 va_list ap; in syslog_r() local
75 va_start(ap, fmt); in syslog_r()
76 vsyslog(priority, fmt, ap); in syslog_r()
77 va_end(ap); in syslog_r()
81 vsyslog_r(int priority, struct syslog_data *data, const char *fmt, va_list ap) in vsyslog_r() argument
83 vsyslog(priority, fmt, ap); in vsyslog_r()
106 va_list ap; in syslogp_r() local
107 va_start(ap, fmt); in syslogp_r()
108 vsyslog(priority, fmt, ap); in syslogp_r()
109 va_end(ap); in syslogp_r()
114 const char *sdfmt, const char *fmt, va_list ap) in vsyslogp_r() argument
116 vsyslog(priority, fmt, ap); in vsyslogp_r()
123 va_list ap; in syslogp_ss() local
124 va_start(ap, fmt); in syslogp_ss()
125 vsyslog(priority, fmt, ap); in syslogp_ss()
126 va_end(ap); in syslogp_ss()
131 const char *sdfmt, const char *fmt, va_list ap) in vsyslogp_ss() argument
133 vsyslog(priority, fmt, ap); in vsyslogp_ss()
140 va_list ap; in syslogp() local
141 va_start(ap, fmt); in syslogp()
142 vsyslog(priority, fmt, ap); in syslogp()
143 va_end(ap); in syslogp()
148 va_list ap) in vsyslogp() argument
150 vsyslog(priority, fmt, ap); in vsyslogp()