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

  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 5 // Package syslog provides a simple interface to the system log
6 // service. It can send messages to the syslog daemon using UNIX
10 // the syslog client will attempt to reconnect to the server
13 // The syslog package is frozen and is not accepting new features.
16 // https://godoc.org/?q=syslog
17 package syslog package
20 // syslog package is frozen, Windows users are encouraged to
syslog_unix.go 7 package syslog package
14 // unixSyslog opens a connection to the syslog daemon running on the
19 logPaths := []string{"/dev/log", "/var/run/syslog", "/var/run/log"}
30 return nil, errors.New("Unix syslog delivery error")
syslog_test.go 7 package syslog package
211 // Depends on syslog daemon running, and sometimes it's not.
212 t.Skip("skipping syslog test during -short")
225 t.Skip("skipping syslog test during -short")
235 t.Skip("skipping syslog test during -short")
289 t.Fatalf("syslog.Dial() failed: %v", err)
313 t.Fatalf("syslog.Dial() failed: %v", err)
372 t.Errorf("syslog.Dial() failed: %v", err)
syslog.go 7 package syslog package
20 // The Priority is a combination of the syslog facility and
32 // From /usr/include/sys/syslog.h.
47 // From /usr/include/sys/syslog.h.
75 // A Writer is a connection to a syslog server.
89 // simply open a TCP connection to the syslog daemon. The gccgo
92 // library syslog function.
114 // If network is empty, Dial will connect to the local syslog server.
119 return nil, errors.New("log/syslog: invalid priority")
145 // connect makes a connection to the syslog server
    [all...]
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 5 // Package syslog provides a simple interface to the system log
6 // service. It can send messages to the syslog daemon using UNIX
10 // the syslog client will attempt to reconnect to the server
13 // The syslog package is frozen and is not accepting new features.
16 // https://godoc.org/?q=syslog
17 package syslog package
20 // syslog package is frozen, Windows users are encouraged to
syslog_unix.go 7 package syslog package
14 // unixSyslog opens a connection to the syslog daemon running on the
19 logPaths := []string{"/dev/log", "/var/run/syslog", "/var/run/log"}
30 return nil, errors.New("Unix syslog delivery error")
syslog_test.go 7 package syslog package
211 // Depends on syslog daemon running, and sometimes it's not.
212 t.Skip("skipping syslog test during -short")
225 t.Skip("skipping syslog test during -short")
235 t.Skip("skipping syslog test during -short")
289 t.Fatalf("syslog.Dial() failed: %v", err)
313 t.Fatalf("syslog.Dial() failed: %v", err)
372 t.Errorf("syslog.Dial() failed: %v", err)
syslog.go 7 package syslog package
20 // The Priority is a combination of the syslog facility and
32 // From /usr/include/sys/syslog.h.
47 // From /usr/include/sys/syslog.h.
75 // A Writer is a connection to a syslog server.
89 // simply open a TCP connection to the syslog daemon. The gccgo
92 // library syslog function.
114 // If network is empty, Dial will connect to the local syslog server.
119 return nil, errors.New("log/syslog: invalid priority")
145 // connect makes a connection to the syslog server
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
syslog.h 1 /* Checking macros for syslog functions.
21 # error "Never include <bits/syslog.h> directly; use <sys/syslog.h> instead."
30 syslog (int __pri, __const char *__fmt, ...) function
35 # define syslog(pri, ...) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
syslog.h 1 /* Checking macros for syslog functions.
21 # error "Never include <bits/syslog.h> directly; use <sys/syslog.h> instead."
30 syslog (int __pri, __const char *__fmt, ...) function
35 # define syslog(pri, ...) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
syslog.h 1 /* Checking macros for syslog functions.
21 # error "Never include <bits/syslog.h> directly; use <sys/syslog.h> instead."
30 syslog (int __pri, __const char *__fmt, ...) function
35 # define syslog(pri, ...) \ macro
  /bionic/libc/bionic/
syslog.cpp 20 #include <syslog.h>
44 void syslog(int priority, const char* fmt, ...) { function
  /external/ltp/testcases/kernel/syscalls/syslog/
syslog11.c 23 * TEST TITLE : Basic tests for syslog(2)
34 * Verify that, syslog(2) is successful for type ranging from 1 to 8
95 #define syslog(arg1, arg2, arg3) syscall(__NR_syslog, arg1, arg2, arg3) macro
135 TEST(syslog(tdat[testno].type, tdat[testno].buf,
141 "syslog() passed for %s (non-root EPERM is OK)",
145 "syslog() failed for %s: errno "
150 tst_resm(TPASS, "syslog() successful for %s",
syslog12.c 23 * TEST TITLE : Checking error conditions for syslog(2)
35 * 1. syslog(2) fails with EINVAL for invalid type/command
36 * 2. syslog(2) fails with EFAULT for buffer outside program's accessible
38 * 3. syslog(2) fails with EINVAL for NULL buffer argument.
39 * 4. syslog(2) fails with EINVAL for length arg. set to negative value.
40 * 5. syslog(2) fails with EPERM for non-root user.
41 * 6. syslog(2) fails with EINVAL for console level less than 0.
42 * 7. syslog(2) fails with EINVAL for console level greater than 8.
107 #define syslog(arg1, arg2, arg3) syscall(__NR_syslog, arg1, arg2, arg3) macro
122 tst_resm(TWARN, "syslog() timeout after 1s
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 442 void syslog (int a, const char *c, ...) function
  /external/syslinux/gpxe/src/config/
config.c 80 REQUIRE_OBJECT ( syslog ); variable
  /external/autotest/server/hosts/
adb_host.py 841 def syslog(self, message, tag='autotest'): member in class:ADBHost
    [all...]
cros_host.py 1551 def syslog(self, message, tag='autotest'): member in class:CrosHost
    [all...]
  /external/fio/os/windows/
posix.c 331 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
340 void syslog(int priority, const char *message, ... /* argument */) function
348 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
352 log_err("syslog: failed to open log file\n");
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 62 static void syslog( int priority, const char * message, ...) function
85 #include <syslog.h>
138 uint32_t logcounter; // Counter used to control number of syslog messages we write
176 syslog(LOG_WARNING, "dnssd_clientstub write_all: SO_ISDEFUNCT failed %d %s", dnssd_errno, dnssd_strerror(dnssd_errno));
178 syslog(LOG_WARNING, "dnssd_clientstub write_all(%d) failed %ld/%ld %d %s", sd,
183 syslog(LOG_INFO, "dnssd_clientstub write_all(%d) DEFUNCT", sd);
185 syslog(LOG_WARNING, "dnssd_clientstub write_all(%d) failed %ld/%ld %d %s", sd,
211 if ((num_read < 0) && (errno == EINTR)) { syslog(LOG_INFO, "dnssd_clientstub read_all: EINTR continue"); continue; }
228 syslog(LOG_WARNING, "dnssd_clientstub read_all: SO_ISDEFUNCT failed %d %s", dnssd_errno, dnssd_strerror(dnssd_errno));
234 syslog(LOG_WARNING, "dnssd_clientstub read_all(%d) failed %ld/%ld %d %s", sd
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 661 #define syslog macro
    [all...]

Completed in 580 milliseconds