/external/ltp/testcases/kernel/syscalls/syslog/ |
D | syslog08 | 46 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/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZFeatures.td | 36 "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 …]
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZFeatures.td | 43 "Assume that the distinct-operands facility is installed" 48 "Assume that the fast-serialization facility is installed" 53 "Assume that the floating-point extension facility is installed" 58 "Assume that the high-word facility is installed" 63 "Assume that interlocked-access facility 1 is installed" 69 "Assume that the load/store-on-condition facility is installed" 75 "Assume that the population-count facility is installed" 80 "Assume that the message-security-assist extension facility 3 is installed" 85 "Assume that the message-security-assist extension facility 4 is installed" 90 "Assume that the reset-reference-bits-multiple facility is installed" [all …]
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZProcessors.td | 24 "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 …]
|
/external/toybox/toys/posix/ |
D | logger.c | 53 int facility = LOG_USER, priority = LOG_NOTICE, len = 0; in logger_main() local 65 facility = arrayfind(TT.p, facilities, ARRAY_LEN(facilities)); in logger_main() 66 if (facility<0) { in logger_main() 67 if (sscanf(TT.p, "local%d", &facility)>0 && !(facility&~7)) in logger_main() 68 facility += 16; in logger_main() 71 facility *= 8; in logger_main() 87 openlog(TT.t, LOG_PERROR*FLAG(s), facility); in logger_main()
|
/external/tcpdump/ |
D | print-syslog.c | 85 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/ |
D | syslog.rst | 11 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/python/cpython3/Doc/library/ |
D | syslog.rst | 12 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)
|
/external/openssh/ |
D | log.c | 127 log_facility_name(SyslogFacility facility) in log_facility_name() argument 132 if (log_facilities[i].val == facility) in log_facility_name() 257 log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) in log_init() argument 278 switch (facility) { in log_init() 320 (int) facility); in log_init()
|
/external/python/cpython3/Modules/ |
D | syslogmodule.c | 116 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()
|
/external/python/cpython2/Modules/ |
D | syslogmodule.c | 113 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/ |
D | handlers.py | 741 facility=LOG_USER, socktype=None): argument 756 self.facility = facility 817 def encodePriority(self, facility, priority): argument 824 if isinstance(facility, basestring): 825 facility = self.facility_names[facility] 828 return (facility << 3) | priority 865 prio = '<%d>' % self.encodePriority(self.facility,
|
/external/ImageMagick/ |
D | AUTHORS.txt | 59 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/python/cpython3/Lib/logging/ |
D | handlers.py | 815 facility=LOG_USER, socktype=None): argument 830 self.facility = facility 892 def encodePriority(self, facility, priority): argument 899 if isinstance(facility, str): 900 facility = self.facility_names[facility] 903 return (facility << 3) | priority 945 prio = '<%d>' % self.encodePriority(self.facility,
|
/external/ltp/testcases/kernel/logging/kmsg/ |
D | kmsg01.c | 280 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()
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | logging_setup.py | 64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
|
/external/crosvm/sys_util/src/ |
D | syslog.rs | 419 facility: Facility, field 427 facility: f, in new() 439 log(self.priority, self.facility, None, format_args!("{}", line)); in write()
|
/external/mesa3d/docs/ |
D | debugging.rst | 16 There is a display list printing/debugging facility. See the end of
|
/external/arm-optimized-routines/math/tools/ |
D | remez.jl | 54 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
|
/external/llvm-project/libc/AOR_v20.02/math/tools/ |
D | remez.jl | 55 function enable_debug(facility) argument 56 push!(debug_facilities, facility) 65 macro debug(facility, printargs...) argument 67 print("[", $facility, "] ") 76 if $facility in debug_facilities
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | int-sub-09.ll | 1 ; Test 128-bit subtraction when the distinct-operands facility is available.
|
/external/llvm/test/CodeGen/SystemZ/ |
D | int-sub-09.ll | 1 ; Test 128-bit subtraction when the distinct-operands facility is available.
|
/external/autotest/ |
D | MODULE_LICENSE_LGPL | 50 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
|
D | LGPL_LICENSE | 50 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/javaparser/ |
D | LICENSE.LGPL | 50 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
|