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

/freebsd-12-stable/lib/libcasper/services/cap_syslog/
H A Dcap_syslog.h38 void cap_openlog(cap_channel_t *chan, const char *ident, int logopt,
47 #define cap_openlog(chan, ident, logopt, facility) \
48 openlog(ident, logopt, facility)
H A Dcap_syslog.c80 cap_openlog(cap_channel_t *chan, const char *ident, int logopt, int facility) argument
89 nvlist_add_number(nvl, "logopt", logopt);
91 if (logopt & LOG_PERROR) {
153 uint64_t logopt; local
162 logopt = nvlist_get_number(nvlin, "logopt");
163 if (logopt & LOG_PERROR) {
174 openlog(LogTag, logopt, nvlist_get_number(nvlin, "facility"));
/freebsd-12-stable/contrib/tcp_wrappers/
H A Dfakelog.c20 void openlog(name, logopt, facility)
22 int logopt;
/freebsd-12-stable/contrib/ipfilter/tools/
H A Dipf.c268 int flag, xfd, logopt, change = 0; local
318 logopt = 0;
319 if (ioctl(xfd, SIOCGETLG, &logopt))
322 logopt = 1 - logopt;
323 if (ioctl(xfd, SIOCSETLG, &logopt))
335 logopt = 0;
336 if (ioctl(xfd, SIOCGETLG, &logopt))
339 logopt = 1 - logopt;
[all...]
H A Dipf_y.y388 logopt
402 logopt
561 logopt: log label
/freebsd-12-stable/libexec/tftpd/
H A Dtftp-utils.h115 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-12-stable/usr.sbin/apmd/
H A Dapmd.c644 int logopt = LOG_NDELAY | LOG_PID; local
674 logopt |= LOG_PERROR;
677 openlog(prog ? prog+1 : av[0], logopt, LOG_DAEMON);
/freebsd-12-stable/contrib/libxo/libxo/
H A Dxo.h629 xo_open_log (const char *ident, int logopt, int facility);
/freebsd-12-stable/usr.sbin/rtadvd/
H A Drtadvd.c184 int fflag = 0, logopt; local
228 logopt = LOG_NDELAY | LOG_PID;
230 logopt |= LOG_PERROR;
231 openlog("rtadvd", logopt, LOG_DAEMON);
/freebsd-12-stable/sbin/pfctl/
H A Dparse.y510 %type <v.logquick> logquick quick log logopts logopt
2792 logopts : logopt { $$ = $1; }
2793 | logopts comma logopt {
2801 logopt : ALL { $$.log = PF_LOG_ALL; $$.logif = 0; } label

Completed in 260 milliseconds