HomeSort by relevance Sort by last modified time
    Searched refs:facility (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/ltp/testcases/kernel/syscalls/syslog/
syslog08 33 # o Create seperate entries in config file for each facility. #
46 for facility in $facilities; do
48 tst_resm TINFO "Doing facility: $facility..."
50 # Create the configuration file specific to this facility
55 echo "$facility.info /var/log/messages" >> $CONFIG_FILE
56 echo "$facility.info /var/log/maillog" >> $CONFIG_FILE
61 echo "filter f_syslog-$facility { level(info) and facility($facility); };" >> $CONFIG_FIL
    [all...]
  /external/toybox/toys/posix/
logger.c 15 usage: logger [-s] [-t TAG] [-p [FACILITY.]PRIORITY] [message...]
21 -p Specify PRIORITY with optional FACILITY. Default is "user.notice"
55 int facility = LOG_USER, priority = LOG_NOTICE, len; local
67 facility = arrayfind(TT.priority, facilities, ARRAY_LEN(facilities));
68 if (facility == -1 && strncasecmp(TT.priority, "local", 5)) {
69 facility = s1[5]-'0';
70 if (facility>7 || s1[6]) facility = -1;
71 if (facility>=0) facility += 16
    [all...]
  /external/valgrind/none/tests/s390x/
fpext_fail.stderr.exp 3 Encountered an instruction that requires the floating point extension facility.
4 That facility is not available on this host
stfle.stdout.exp 5 STFLE facility is installed
10 No MSA facility available
fpext_warn.stderr.exp 4 feature requires the floating point extension facility
10 feature requires the floating point extension facility
16 feature requires the floating point extension facility
  /external/tcpdump/
print-syslog.c 85 uint16_t facility,severity; local
90 * severity and facility values
114 facility = (pri & SYSLOG_FACILITY_MASK) >> 3;
120 tok2str(syslog_facility_values, "unknown (%u)", facility),
128 tok2str(syslog_facility_values, "unknown (%u)", facility),
129 facility,
  /external/fio/os/windows/posix/include/
syslog.h 16 void openlog(const char *ident, int logopt, int facility);
  /prebuilts/go/darwin-x86/src/runtime/
os_linux_s390x.go 13 _HWCAP_S390_VX = 2048 // vector facility
19 hasVX bool // vector facility
  /prebuilts/go/linux-x86/src/runtime/
os_linux_s390x.go 13 _HWCAP_S390_VX = 2048 // vector facility
19 hasVX bool // vector facility
  /external/icu/icu4c/source/test/testdata/
tstfiles.mk 8 # Not everything has been moved to this file yet, as this is a new facility.
  /prebuilts/go/darwin-x86/test/
linkx.go 7 // Test the -X facility of the gc linker (6l etc.).
  /prebuilts/go/linux-x86/test/
linkx.go 7 // Test the -X facility of the gc linker (6l etc.).
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_ims.cpp 62 std::string facility = ""; local
67 radio->getFacilityLockForApp(serial, facility, password, serviceClass, appId);
85 std::string facility = ""; local
91 radio->setFacilityLockForApp(serial, facility, lockState, password, serviceClass, appId);
109 std::string facility = ""; local
113 radio->setBarringPassword(serial, facility, oldPassword, newPassword);
  /external/valgrind/tests/
filter_libc 40 s/The futex facility returned an unexpected error code.//;
  /external/autotest/client/cros/cellular/pseudomodem/
logging_setup.py 64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
  /prebuilts/go/darwin-x86/src/bytes/
bytes_s390x.go 14 // supportsVX reports whether the vector facility is available.
15 // indexShortStr must not be called if the vector facility is not
  /prebuilts/go/darwin-x86/src/strings/
strings_s390x.go 14 // supportsVX reports whether the vector facility is available.
15 // indexShortStr must not be called if the vector facility is not
  /prebuilts/go/linux-x86/src/bytes/
bytes_s390x.go 14 // supportsVX reports whether the vector facility is available.
15 // indexShortStr must not be called if the vector facility is not
  /prebuilts/go/linux-x86/src/strings/
strings_s390x.go 14 // supportsVX reports whether the vector facility is available.
15 // indexShortStr must not be called if the vector facility is not
  /toolchain/binutils/binutils-2.27/binutils/
windmc.h 64 const mc_keyword *facility; member in struct:mc_node
  /external/libunwind/doc/
libunwind-ptrace.tex 48 implementing this facility use a name-prefix of \Func{\_UPT}, which is
51 An application that wants to use the \Func{\_UPT}-facility first needs
59 only portions of the \Prog{\_UPT}-facility. For this reason, the
92 \Prog{\_UPT}-facility by definition is not available in
97 The \Prog{\_UPT}-facility assumes that a single \Prog{\_UPT}-info
100 a \Prog{\_UPT}-info structure at any given time, this facility
  /external/python/cpython2/Modules/
syslogmodule.c 35 - When facility not specified to syslog() method, use default from openlog()
113 long facility = LOG_USER; local
115 static char *keywords[] = {"ident", "logoption", "facility", 0};
118 "|Sll:openlog", keywords, &new_S_ident_o, &logopt, &facility))
136 openlog(S_ident_o ? PyString_AsString(S_ident_o) : NULL, logopt, facility);
  /external/python/cpython3/Modules/
syslogmodule.c 35 - When facility not specified to syslog() method, use default from openlog()
116 long facility = LOG_USER; local
118 static char *keywords[] = {"ident", "logoption", "facility", 0};
122 "|Ull:openlog", keywords, &new_S_ident_o, &logopt, &facility))
147 openlog(ident, logopt, facility);
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 20 // The Priority is a combination of the syslog facility and
22 // message from the FTP facility. The default severity is LOG_EMERG;
23 // the default facility is LOG_KERN.
45 // Facility.
105 // priority (a combination of the syslog facility and severity) and
113 // writer sends a log message with the facility and severity
307 // the syslog facility and severity. The logFlag argument is the flag
  /prebuilts/go/linux-x86/src/log/syslog/
syslog.go 20 // The Priority is a combination of the syslog facility and
22 // message from the FTP facility. The default severity is LOG_EMERG;
23 // the default facility is LOG_KERN.
45 // Facility.
105 // priority (a combination of the syslog facility and severity) and
113 // writer sends a log message with the facility and severity
307 // the syslog facility and severity. The logFlag argument is the flag

Completed in 985 milliseconds

1 2 3 4 5