Searched refs:logopt (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/lib/libcasper/services/cap_syslog/
H A Dcap_syslog.h40 void cap_openlog(cap_channel_t *chan, const char *ident, int logopt,
52 #define cap_openlog(chan, ident, logopt, facility) \
53 openlog(ident, logopt, facility)
H A Dcap_syslog.c78 cap_openlog(cap_channel_t *chan, const char *ident, int logopt, int facility) argument
87 nvlist_add_number(nvl, "logopt", logopt);
89 if (logopt & LOG_PERROR) {
151 uint64_t logopt; local
160 logopt = nvlist_get_number(nvlin, "logopt");
161 if (logopt & LOG_PERROR) {
172 openlog(LogTag, logopt, nvlist_get_number(nvlin, "facility"));
/freebsd-current/contrib/tcp_wrappers/
H A Dfakelog.c20 void openlog(char *name, int logopt, int facility) argument
/freebsd-current/sbin/ipf/ipf/
H A Dipf.c261 int flag, xfd, logopt, change = 0; local
311 logopt = 0;
312 if (ioctl(xfd, SIOCGETLG, &logopt))
315 logopt = 1 - logopt;
316 if (ioctl(xfd, SIOCSETLG, &logopt))
328 logopt = 0;
329 if (ioctl(xfd, SIOCGETLG, &logopt))
332 logopt = 1 - logopt;
[all...]
/freebsd-current/libexec/tftpd/
H A Dtftp-utils.h112 void tftp_openlog(const char *ident, int logopt, int facility);
H A Dtftp-utils.c130 tftp_openlog(const char *ident, int logopt, int facility) argument
135 openlog(ident, logopt, facility);
/freebsd-current/usr.sbin/apmd/
H A Dapmd.c639 int logopt = LOG_NDELAY | LOG_PID; local
669 logopt |= LOG_PERROR;
672 openlog(prog ? prog+1 : av[0], logopt, LOG_DAEMON);
/freebsd-current/contrib/libxo/libxo/
H A Dxo.h648 xo_open_log (const char *ident, int logopt, int facility);
/freebsd-current/usr.sbin/rtadvd/
H A Drtadvd.c183 int fflag = 0, logopt; local
227 logopt = LOG_NDELAY | LOG_PID;
229 logopt |= LOG_PERROR;
230 openlog("rtadvd", logopt, LOG_DAEMON);
/freebsd-current/sbin/ipf/common/
H A Dipf_y.y387 logopt
401 logopt
560 logopt: log label
/freebsd-current/sbin/pfctl/
H A Dparse.y554 %type <v.logquick> logquick quick log logopts logopt
3206 logopts : logopt { $$ = $1; }
3207 | logopts comma logopt {
3215 logopt : ALL { $$.log = PF_LOG_ALL; $$.logif = 0; } label

Completed in 154 milliseconds