/freebsd/lib/libcasper/services/cap_syslog/ |
H A D | cap_syslog.c | 78 cap_openlog(cap_channel_t *chan, const char *ident, int logopt, int facility) in cap_openlog() argument 87 nvlist_add_number(nvl, "logopt", logopt); in cap_openlog() 89 if (logopt & LOG_PERROR) { in cap_openlog() 151 uint64_t logopt; in slog_openlog() local 160 logopt = nvlist_get_number(nvlin, "logopt"); in slog_openlog() 161 if (logopt & LOG_PERROR) { in slog_openlog() 172 openlog(LogTag, logopt, nvlist_get_number(nvlin, "facility")); in slog_openlog()
|
H A D | cap_syslog.h | 40 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)
|
/freebsd/sbin/ipf/ipf/ |
H A D | ipf.c | 261 int flag, xfd, logopt, change = 0; in packetlogon() local 311 logopt = 0; in packetlogon() 312 if (ioctl(xfd, SIOCGETLG, &logopt)) in packetlogon() 315 logopt = 1 - logopt; in packetlogon() 316 if (ioctl(xfd, SIOCSETLG, &logopt)) in packetlogon() 328 logopt = 0; in packetlogon() 329 if (ioctl(xfd, SIOCGETLG, &logopt)) in packetlogon() 332 logopt = 1 - logopt; in packetlogon() 333 if (ioctl(xfd, SIOCSETLG, &logopt)) in packetlogon()
|
/freebsd/libexec/tftpd/ |
H A D | tftp-utils.c | 130 tftp_openlog(const char *ident, int logopt, int facility) in tftp_openlog() argument 135 openlog(ident, logopt, facility); in tftp_openlog()
|
H A D | tftp-utils.h | 112 void tftp_openlog(const char *ident, int logopt, int facility);
|
/freebsd/contrib/tcp_wrappers/ |
H A D | fakelog.c | 20 void openlog(char *name, int logopt, int facility) in openlog() argument
|
/freebsd/usr.sbin/apmd/ |
H A D | apmd.c | 639 int logopt = LOG_NDELAY | LOG_PID; in main() local 669 logopt |= LOG_PERROR; in main() 672 openlog(prog ? prog+1 : av[0], logopt, LOG_DAEMON); in main()
|
/freebsd/usr.sbin/rtadvd/ |
H A D | rtadvd.c | 183 int fflag = 0, logopt; in main() local 227 logopt = LOG_NDELAY | LOG_PID; in main() 229 logopt |= LOG_PERROR; in main() 230 openlog("rtadvd", logopt, LOG_DAEMON); in main()
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo.h | 648 xo_open_log (const char *ident, int logopt, int facility);
|
/freebsd/sbin/ipf/common/ |
H A D | ipf_y.y | 387 logopt 401 logopt 560 logopt: log
|
/freebsd/sbin/pfctl/ |
H A D | parse.y | 569 %type <v.logquick> logquick quick log logopts logopt 3309 logopts : logopt { $$ = $1; } 3310 | logopts comma logopt { 3318 logopt : ALL { $$.log = PF_LOG_ALL; $$.logif = 0; }
|
/freebsd/contrib/libxo/doc/ |
H A D | api.rst | 1505 .. c:function:: void xo_open_log (const char *ident, int logopt, int facility) 1509 :param int logopt: Bit field containing logging options
|