HomeSort by relevance Sort by last modified time
    Searched defs:syslog (Results 1 - 13 of 13) sorted by null

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
syslog.pl 2 # syslog.pl
4 # $Log: syslog.pl,v $
10 # call syslog() with a string priority and a list of printf() args
11 # like syslog(3)
13 # usage: require 'syslog.pl';
19 # do syslog('info','this is another test');
20 # do syslog('mail|warning','this is a better test: %d', time);
23 # do syslog('debug','this is the last test');
25 # do syslog('notice','fooprogram: this is really done');
28 # do syslog('info','problem was %m'); # %m == $! in syslog(3
30 package syslog; package
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
mDNSDebug.c 59 // Need to add Windows syslog support here
64 #define syslog(A,B,C) macro
67 #include <syslog.h>
113 else // else, in production mode, we write to syslog
116 syslog(logpriority, "%s", buffer);
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
Syslog.java 35 * A logging class which writes to UNIX syslog. This class can be dynamically
38 * native syslog. This is because syslog can be listening on any port
39 * mapped to 'syslog' in the services table, but Java provides no way to
52 class Syslog extends Writer {
56 public Syslog() {
79 syslog(priority, buf.toString()); method
86 private native void syslog(int priority, String message); method in class:Syslog
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Sys/Syslog/
Syslog.pm 1 package Sys::Syslog;
18 standard => [qw(openlog syslog closelog setlogmask)],
65 XSLoader::load('Sys::Syslog', $VERSION);
70 bootstrap Sys::Syslog $VERSION;
78 use vars qw($host); # host to send syslog messages to (see notes at end)
91 my $syslog_path = undef; # syslog path for "stream" and "unix" mechanisms
120 if (can_load("Sys::Syslog::Win32")) {
132 # Sys::Syslog v0.19 in order to address a heisenbug on MacOSX:
153 croak "Sys::Syslog::constant() not defined" if $constname eq 'constant';
166 $ident ||= basename($0) || getlogin() || getpwuid($<) || 'syslog';
305 sub syslog { subroutine
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rpcbind/
check_bound.c 51 #include <sys/syslog.h>
152 syslog(LOG_ERR, "no memory!");
358 syslog(LOG_ERR, "taddr2uaddr failed for %s: %s",
408 syslog(LOG_ERR, "mergeaddr: no memory!");
431 syslog(LOG_ERR, "netdir_merge failed for %s: %s",
461 syslog(a, msg, b, c, d) function
469 fprintf(stderr, "Syslog: %s\n", buf);
  /onnv/onnv-gate/usr/src/cmd/ipf/tools/
ipmon_y.y 8 #include <syslog.h>
63 %type <opt> matchopt nattag type doopt doing save syslog nothing
120 | syslog { $$ = $1; }
230 syslog: IPM_SYSLOG { $$ = new_opt(IPM_SYSLOG); } label
277 { "syslog", IPM_SYSLOG },
592 syslog(lvl, "%s", log);
  /onnv/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/logging/
SyslogHandler.java 40 * This handler outputs LogRecords with <code>syslog(3C)</code> to the
49 * <code>syslog(3C)</code> ident string, prepended to every
55 * <code>syslog</code> facility to be logged to.
148 * Calls <code>syslog(3C)</code>.
150 private static native void syslog(int severity, String message); method in class:SyslogHandler
183 * be sent to syslog.
212 * via syslog.
224 syslog(severity.getNative(), message.toString());
251 * Returns the <code>syslog(3C)</code> ident string, which is
260 * Returns the <code>syslog</code> facility to be logged to
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_rport.c 73 { IPPORT_SYSLOG, "SYSLOG" },
237 "kern", "user", "mail", "daemon", "auth", "syslog", "lpr", "news",
296 "SYSLOG %c port=%d %s.%s: %s",
303 static char syslog[] = "SYSLOG: "; local
304 show_header(syslog, syslog, dlen);
307 "%s%sPriority: %.*s%s(%s.%s)", prot_nest_prefix, syslog,
367 * TCP port 514 is rshell. UDP port 514 is syslog.
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
syslog.c 15 * SYSLOG -- print message on log file
35 #include <sys/syslog.h>
91 LogTag = "syslog"; /* string to tag the entry with */
98 syslog(int pri, char *fmt, ...) function
  /onnv/onnv-gate/usr/src/lib/brand/lx/lx_thunk/common/
lx_thunk.c 38 * - Linux syslog
58 * syslog(3c)
768 * syslog() supports a special '%m' format token that expands to
776 * Linux version if syslog. If we didn't do this then vsnprintf()
777 * would translate "%%" to "%" and then the Linux syslog would
1101 syslog(int priority, const char *message, ...) function
1105 lxt_debug("syslog: request caught");
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
syslog.c 42 * SYSLOG -- print message on log file
55 #pragma weak _syslog = syslog
66 #include <syslog.h>
119 "syslog", /* string to tag the entry with */
142 * syslog() is called from the bottom of a deep call stack
145 * Because syslog() uses stdio (and it is called from within stdio)
151 * this thing and always to call syslog() with no locks held.
154 * Meanwhile, we just hope that on the rare occasion that syslog()
159 syslog(int pri, const char *fmt, ...) function
213 * of syslog. If we succeed in getting the name, als
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/include/sm/
conf.h 128 # define syslog hard_syslog macro
406 # define SYSLOG_BUFSIZE 1024 /* allow full size syslog buffer */
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/src/
conf.c 655 /* syslog map -- logs information to syslog */
656 MAPDEF("syslog", NULL, 0,
678 /* dprintf map -- logs information to syslog */
5483 # undef syslog macro
    [all...]

Completed in 539 milliseconds