Home
last modified time | relevance | path

Searched refs:facility (Results 1 – 25 of 174) sorted by relevance

1234567

/external/ltp/testcases/kernel/syscalls/syslog/
Dsyslog0846 for facility in $facilities; do
48 tst_resm TINFO "Doing facility: $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_FILE
64 …echo "log { source(src); filter(f_syslog-$facility); destination(syslog-mail); };" >> $CONFIG_FILE
65 …echo "log { source(src); filter(f_syslog-$facility); destination(syslog-messages); };" >> $CONFIG…
73 oldvalue=`grep -c "syslogtst: $facility info test." /var/log/messages`
79 old_mail_check=`grep -c "syslogtst: $facility info test." /var/log/maillog`
100 new_mail_check=`grep -c "syslogtst: $facility info test." /var/log/maillog`
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZProcessors.td24 "Assume that the distinct-operands facility is installed"
29 "Assume that the load/store-on-condition facility is installed"
34 "Assume that the load/store-on-condition facility 2 is installed"
39 "Assume that the high-word facility is installed"
44 "Assume that the floating-point extension facility is installed"
49 "Assume that the population-count facility is installed"
54 "Assume that the fast-serialization facility is installed"
59 "Assume that interlocked-access facility 1 is installed"
65 "Assume that the miscellaneous-extensions facility is installed"
70 "Assume that the transactional-execution facility is installed"
[all …]
DSystemZRegisterInfo.td102 // used for virtual registers if the high-word facility is available.
190 // Floating-point registers. Registers 16-31 require the vector facility.
239 // The vector facility also includes scalar f64 instructions that operate
/external/tcpdump/
Dprint-syslog.c85 uint16_t facility,severity; in syslog_print() local
114 facility = (pri & SYSLOG_FACILITY_MASK) >> 3; in syslog_print()
120 tok2str(syslog_facility_values, "unknown (%u)", facility), in syslog_print()
128 tok2str(syslog_facility_values, "unknown (%u)", facility), in syslog_print()
129 facility, in syslog_print()
/external/python/cpython2/Doc/library/
Dsyslog.rst11 facility.
25 *facility* and a *level*. The optional *priority* argument, which defaults
26 to :const:`LOG_INFO`, determines the message priority. If the facility is
34 .. function:: openlog([ident[, logoption[, facility]]])
43 field -- see below for possible values to combine. The optional *facility*
44 keyword argument (default is :const:`LOG_USER`) sets the default facility for
45 messages which do not have a facility explicitly encoded.
100 logged messages, and write the messages to the destination facility used for
103 syslog.openlog(logoption=syslog.LOG_PID, facility=syslog.LOG_MAIL)
/external/toybox/toys/pending/
Dlogger.c31 int facility = LOG_USER, priority = LOG_NOTICE; in logger_main() local
39 if ((facility = logger_lookup(0, TT.priority_arg)) == -1) in logger_main()
70 openlog(TT.ident, (toys.optflags & FLAG_s ? LOG_PERROR : 0) , facility); in logger_main()
Dsyslogd.c51 uint32_t facility[8]; member
144 if (set & 0x1) file->facility[i] |= ~facval; in resolve_config()
362 if (!((tf->facility[lvl] & (1 << fac)) || (tf->level[fac] & (1<<lvl)))) { in logmsg()
/external/valgrind/none/tests/s390x/
Dfpext_warn.stderr.exp4 feature requires the floating point extension facility
10 feature requires the floating point extension facility
16 feature requires the floating point extension facility
Dstfle.stdout.exp5 STFLE facility is installed
10 No MSA facility available
Dfpext_fail.stderr.exp4 That facility is not available on this host
/external/openssh/
Dlog.c121 log_facility_name(SyslogFacility facility) in log_facility_name() argument
126 if (log_facilities[i].val == facility) in log_facility_name()
251 log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) in log_init() argument
283 switch (facility) { in log_init()
325 (int) facility); in log_init()
/external/libunwind/doc/
Dlibunwind-ptrace.tex48 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/valgrind/
DREADME.s39025 - The transactional-execution facility is not supported; it is masked
27 - The vector facility is not supported; it is masked off from HWCAP.
37 instructions from that facility and observing whether SIGILL is thrown
/external/python/cpython2/Modules/
Dsyslogmodule.c113 long facility = LOG_USER; in syslog_openlog() local
118 "|Sll:openlog", keywords, &new_S_ident_o, &logopt, &facility)) in syslog_openlog()
136 openlog(S_ident_o ? PyString_AsString(S_ident_o) : NULL, logopt, facility); in syslog_openlog()
/external/python/cpython2/Lib/logging/
Dhandlers.py741 facility=LOG_USER, socktype=None): argument
756 self.facility = facility
802 def encodePriority(self, facility, priority): argument
809 if isinstance(facility, basestring):
810 facility = self.facility_names[facility]
813 return (facility << 3) | priority
850 prio = '<%d>' % self.encodePriority(self.facility,
/external/ImageMagick/
DAUTHORS.txt59 facility, automatic file identification (magic) support, Unix/Cygwin/MinGW
60 configure/make facility, Windows setup.exe style installer, WMF renderer,
83 Author of the VisualMagick project configure facility for Visual C++.
86 Authored "process" module support. Wrote the micro-timer facility used
/external/fio/os/windows/posix/include/
Dsyslog.h16 void openlog(const char *ident, int logopt, int facility);
/external/ltp/testcases/kernel/logging/kmsg/
Dkmsg01.c313 int i, facility, prio; in test_inject() local
320 facility = (i >> 3); in test_inject()
322 "facility: %d\n", random(), prio, facility); in test_inject()
/external/autotest/client/cros/cellular/pseudomodem/
Dlogging_setup.py64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
/external/autotest/
DMODULE_LICENSE_LGPL50 facility refers to a function or data to be supplied by an Application
51 that uses the facility (other than as an argument passed when the
52 facility is invoked), then you may convey a copy of the modified
57 function or data, the facility still operates, and performs
DLGPL_LICENSE50 facility refers to a function or data to be supplied by an Application
51 that uses the facility (other than as an argument passed when the
52 facility is invoked), then you may convey a copy of the modified
57 function or data, the facility still operates, and performs
/external/elfutils/
DCOPYING-LGPLV350 facility refers to a function or data to be supplied by an Application
51 that uses the facility (other than as an argument passed when the
52 facility is invoked), then you may convey a copy of the modified
57 function or data, the facility still operates, and performs
/external/llvm/test/CodeGen/SystemZ/
Dint-sub-09.ll1 ; Test 128-bit subtraction when the distinct-operands facility is available.
/external/clang/examples/PrintFunctionNames/
DREADME.txt1 This is a simple example demonstrating how to use clang's facility for
/external/ImageMagick/m4/
Dframework.m452 # facility refers to a function or data to be supplied by an Application
53 # that uses the facility (other than as an argument passed when the
54 # facility is invoked), then you may convey a copy of the modified
59 # function or data, the facility still operates, and performs

1234567