Home
last modified time | relevance | path

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

1234567

/third_party/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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZFeatures.td36 "Assume that the distinct-operands facility is installed"
41 "Assume that the fast-serialization facility is installed"
46 "Assume that the floating-point extension facility is installed"
51 "Assume that the high-word facility is installed"
56 "Assume that interlocked-access facility 1 is installed"
62 "Assume that the load/store-on-condition facility is installed"
68 "Assume that the population-count facility is installed"
73 "Assume that the message-security-assist extension facility 3 is installed"
78 "Assume that the message-security-assist extension facility 4 is installed"
83 "Assume that the reset-reference-bits-multiple facility is installed"
[all …]
DSystemZRegisterInfo.td101 // used for virtual registers if the high-word facility is available.
198 // Floating-point registers. Registers 16-31 require the vector facility.
247 // The vector facility also includes scalar f64 instructions that operate
DSystemZInstrSystem.td299 // Perform timing facility function.
350 // Store facility list.
354 // Store facility list extended.
/third_party/toybox/toys/posix/
Dlogger.c54 int facility = LOG_USER, priority = LOG_NOTICE, len; in logger_main() local
66 facility = arrayfind(TT.p, facilities, ARRAY_LEN(facilities)); in logger_main()
67 if (facility == -1 && strncasecmp(TT.p, "local", 5)) { in logger_main()
68 facility = s1[5]-'0'; in logger_main()
69 if (facility>7 || s1[6]) facility = -1; in logger_main()
70 if (facility>=0) facility += 16; in logger_main()
72 if (facility<0) error_exit("bad facility: %s", TT.p); in logger_main()
73 facility *= 8; in logger_main()
92 openlog(TT.t, LOG_PERROR*!!(toys.optflags&FLAG_s), facility); in logger_main()
/third_party/python/Doc/library/
Dsyslog.rst12 facility.
26 *facility* and a *level*. The optional *priority* argument, which defaults
27 to :const:`LOG_INFO`, determines the message priority. If the facility is
37 .. function:: openlog([ident[, logoption[, facility]]])
46 field -- see below for possible values to combine. The optional *facility*
47 keyword argument (default is :const:`LOG_USER`) sets the default facility for
48 messages which do not have a facility explicitly encoded.
50 .. audit-event:: syslog.openlog ident,logoption,facility syslog.openlog
116 logged messages, and write the messages to the destination facility used for
119 syslog.openlog(logoption=syslog.LOG_PID, facility=syslog.LOG_MAIL)
/third_party/openssl/doc/man3/
DOPENSSL_s390xcap.pod50 Store-facility-list-extended (stfle) followed by three 64-bit masks. The
68 # 25 1<<38 store-clock-fast facility
73 #129 1<<62 vector facility
74 #134 1<<57 vector packed decimal facility
75 #135 1<<56 vector enhancements facility 1
178 Disables the vector facility:
DOSSL_CMP_log_open.pod51 The logging and error reporting facility described here contains
74 of auditing may be required. Therefore, the logging facility supports a severity
84 OSSL_CMP_log_open() initializes the CMP-specific logging facility to output
DSSL_set_fd.pod17 SSL_set_fd() sets the file descriptor B<fd> as the input/output facility
/third_party/python/Modules/
Dsyslogmodule.c116 long facility = LOG_USER; in syslog_openlog() local
122 "|Ull:openlog", keywords, &new_S_ident_o, &logopt, &facility)) in syslog_openlog()
147 if (PySys_Audit("syslog.openlog", "sll", ident, logopt, facility) < 0) { in syslog_openlog()
151 openlog(ident, logopt, facility); in syslog_openlog()
/third_party/libunwind/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
/third_party/python/Lib/logging/
Dhandlers.py845 facility=LOG_USER, socktype=None): argument
860 self.facility = facility
922 def encodePriority(self, facility, priority): argument
929 if isinstance(facility, str):
930 facility = self.facility_names[facility]
933 return (facility << 3) | priority
975 prio = '<%d>' % self.encodePriority(self.facility,
/third_party/musl/src/misc/
Dsyslog.c61 void openlog(const char *ident, int opt, int facility) in openlog() argument
75 log_facility = facility; in openlog()
/third_party/musl/porting/liteos_a/user/src/misc/
Dsyslog.c60 void openlog(const char *ident, int opt, int facility) in openlog() argument
75 log_facility = facility; in openlog()
/third_party/ltp/testcases/kernel/logging/kmsg/
Dkmsg01.c280 int i, facility, prio; in test_inject() local
288 facility = (i >> 3); in test_inject()
290 "facility: %d\n", random(), prio, facility); in test_inject()
/third_party/optimized-routines/math/tools/
Dremez.jl54 function enable_debug(facility) argument
55 push!(debug_facilities, facility)
64 macro debug(facility, printargs...) argument
66 print("[", $facility, "] ")
75 if $facility in debug_facilities
/third_party/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
/third_party/ffmpeg/
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
/third_party/NuttX/include/
Dsyslog.h168 void openlog(FAR const char *ident, int option, int facility);
/third_party/mesa3d/docs/
Ddebugging.rst16 There is a display list printing/debugging facility. See the end of
/third_party/toybox/toys/pending/
Dsyslogd.c50 uint32_t facility[8]; member
143 if (set & 0x1) file->facility[i] |= ~facval; in resolve_config()
361 if (!((tf->facility[lvl] & (1 << fac)) || (tf->level[fac] & (1<<lvl)))) { in logmsg()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_shader_atomic_float2.adoc42 Vulkan currently has no facility for even basic reading or writing such
DVK_EXT_shader_atomic_float2.txt47 Vulkan currently has no facility for even basic reading or writing such
/third_party/python/Doc/tutorial/
Dinteractive.rst38 This facility is an enormous step forward compared to earlier versions of the
/third_party/mesa3d/docs/relnotes/
D6.331 window-system indepedent Pbuffer facility.

1234567