| /openbsd-src/gnu/llvm/lldb/source/Expression/ |
| H A D | DiagnosticManager.cpp | 34 static const char *StringForSeverity(DiagnosticSeverity severity) { in StringForSeverity() argument 35 switch (severity) { in StringForSeverity() 59 size_t DiagnosticManager::Printf(DiagnosticSeverity severity, in Printf() argument 68 AddDiagnostic(ss.GetString(), severity, eDiagnosticOriginLLDB); in Printf() 73 void DiagnosticManager::PutString(DiagnosticSeverity severity, in PutString() argument 77 AddDiagnostic(str, severity, eDiagnosticOriginLLDB); in PutString()
|
| /openbsd-src/lib/libevent/ |
| H A D | log.c | 52 static void _warn_helper(int severity, int log_errno, const char *fmt, 54 static void event_log(int severity, const char *msg); 119 _warn_helper(int severity, int log_errno, const char *fmt, va_list ap) in _warn_helper() argument 137 event_log(severity, buf); in _warn_helper() 149 event_log(int severity, const char *msg) in event_log() argument 152 log_fn(severity, msg); in event_log()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Expression/ |
| H A D | DiagnosticManager.h | 58 Diagnostic(llvm::StringRef message, DiagnosticSeverity severity, in Diagnostic() argument 60 : m_message(message), m_severity(severity), m_origin(origin), in Diagnostic() 109 void AddDiagnostic(llvm::StringRef message, DiagnosticSeverity severity, 113 std::make_unique<Diagnostic>(message, severity, origin, compiler_id)); 120 size_t Printf(DiagnosticSeverity severity, const char *format, ...) 122 void PutString(DiagnosticSeverity severity, llvm::StringRef str);
|
| /openbsd-src/gnu/usr.bin/perl/t/porting/ |
| H A D | diag.t | 94 my $severity_re = qr/ . (?: \| . )* /x; # A severity is a single char, but can 148 if (! $entries{$cur_entry}{severity}) { 154 $entries{$cur_entry}{severity} = $1; 159 @$_{qw<severity category>} = 160 @{$entries{$cur_entry}}{qw<severity category>} 165 # Keep track of first line of text if doesn't contain a severity, so 184 next if $entries{$cur_entry}{todo}; # If in this file, won't have a severity 185 if (! exists $entries{$cur_entry}{severity} 191 # If the first line refers to another message, no need for severity 198 . " is missing a severity an [all...] |
| /openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/ |
| H A D | test_diagnostics.py | 19 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning) 29 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Error) 41 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning) 56 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Error) 76 self.assertEqual(d.severity, Diagnostic.Warning) 99 self.assertEqual(children[0].severity, Diagnostic.Note)
|
| /openbsd-src/usr.sbin/mrouted/ |
| H A D | main.c | 540 * according to the severity of the message and the current debug level. 541 * For errors of severity LOG_ERR or worse, terminate the program. 544 logit(int severity, int syserr, char *format, ...) in logit() argument 557 msg = (severity == LOG_WARNING) ? fmt : &fmt[10]; in logit() 561 case 1: if (severity > LOG_NOTICE) break; in logit() 562 case 2: if (severity > LOG_INFO ) break; in logit() 578 if (severity <= LOG_NOTICE) { in logit() 582 syslog(severity, "%s: %m", msg); in logit() 584 syslog(severity, "%s", msg); in logit() 587 if (severity < in logit() [all...] |
| /openbsd-src/gnu/usr.bin/perl/cpan/Sys-Syslog/t/ |
| H A D | facilities-routing.t | 120 severity => $message->{severity}, 124 severity => $sent_lev_num,
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Checker/lib/Pod/ |
| H A D | Checker.pm | 603 -severity 622 unless (exists $opts{'-severity'}) { 623 ## See if can find severity in message prefix 624 $opts{'-severity'} = $1 if ( $msg =~ s/^\**\s*([A-Z]{3,}):\s+// ); 626 my $severity = (exists $opts{'-severity'}) ? "*** $opts{-severity}: " : ''; 630 if(!%opts || ($opts{-severity} && $opts{'-severity'} eq 'ERROR')); 632 if(!%opts || ($opts{-severity} [all...] |
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangDiagnostic.h | 32 ClangDiagnostic(llvm::StringRef message, DiagnosticSeverity severity, in ClangDiagnostic() argument 34 : Diagnostic(message, severity, eDiagnosticOriginClang, compiler_id) {} in ClangDiagnostic()
|
| H A D | ClangExpressionParser.cpp | 212 lldb_private::DiagnosticSeverity severity; in HandleDiagnostic() local 218 severity = eDiagnosticSeverityError; in HandleDiagnostic() 221 severity = eDiagnosticSeverityWarning; in HandleDiagnostic() 225 severity = eDiagnosticSeverityRemark; in HandleDiagnostic() 255 stripped_output, severity, Info.getID()); in HandleDiagnostic() 261 if (severity == eDiagnosticSeverityError) in HandleDiagnostic()
|
| /openbsd-src/usr.sbin/mrinfo/ |
| H A D | mrinfo.c | 122 * Log errors and other messages to stderr, according to the severity of the 123 * message and the current debug level. For errors of severity LOG_ERR or 127 logit(int severity, int syserr, char *format, ...) in logit() argument 133 if (severity > LOG_WARNING) in logit() 136 if (severity > LOG_NOTICE) in logit() 139 if (severity > LOG_INFO) in logit() 142 if (severity == LOG_WARNING) in logit() 155 if (severity <= LOG_ERR) in logit()
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CXLoadedDiagnostic.h | 26 severity(0), category(0) {} in CXLoadedDiagnostic() 88 unsigned severity; variable
|
| H A D | CXLoadedDiagnostic.cpp | 71 auto severityAsLevel = static_cast<serialized_diags::Level>(severity); in getSeverity() 72 assert(severity == static_cast<unsigned>(severityAsLevel) && in getSeverity() 379 D.severity = Severity; in visitDiagnosticRecord()
|
| /openbsd-src/usr.bin/sed/ |
| H A D | misc.c | 105 error(int severity,const char * fmt,...) error() argument
|
| /openbsd-src/gnu/usr.bin/perl/utils/ |
| H A D | perlbug.PL | 100 $report_about_module, $category, $severity, 575 $severity ||= ask_for_alternatives('severity'); 687 $severity ||= 'low'; 695 - severity=$severity
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | bad.c | 66 const ffebadSeverity severity; member 143 return ffebad_messages_[errnum].severity; in ffebad_severity() 181 ffebad_severity_ = ffebad_messages_[errnum].severity; in ffebad_start_()
|
| /openbsd-src/usr.sbin/map-mbone/ |
| H A D | mapper.c | 162 * Log errors and other messages to stderr, according to the severity of the 163 * message and the current debug level. For errors of severity LOG_ERR or 167 logit(int severity, int syserr, char *format, ...) in logit() argument 173 case 0: if (severity > LOG_WARNING) return; in logit() 174 case 1: if (severity > LOG_NOTICE ) return; in logit() 175 case 2: if (severity > LOG_INFO ) return; in logit() 179 if (severity == LOG_WARNING) in logit() 192 if (severity <= LOG_ERR) in logit()
|
| /openbsd-src/gnu/llvm/clang/bindings/python/examples/cindex/ |
| H A D | cindex-dump.py | 17 return { 'severity' : diag.severity,
|
| /openbsd-src/usr.bin/tmux/ |
| H A D | log.c | 35 log_event_cb(__unused int severity, const char *msg) in log_event_cb() argument
|
| /openbsd-src/usr.sbin/mtrace/ |
| H A D | mtrace.c | 1629 logit(int severity, int syserr, char *format, ...) in logit() argument 1634 case 0: if (severity > LOG_WARNING) return; in logit() 1635 case 1: if (severity > LOG_NOTICE) return; in logit() 1636 case 2: if (severity > LOG_INFO ) return; in logit() 1638 if (severity == LOG_WARNING) in logit() 1650 if (severity <= LOG_ERR) exit(1); in logit()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | ui-out.h | 176 extern void gdb_error (struct ui_out *uiout, int severity, char *format, ...);
|
| /openbsd-src/gnu/llvm/llvm/include/llvm-c/ |
| H A D | lto.h | 347 lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlvms.pod | 644 SEVERE_ERROR severity for DCL error handling. 654 severity, then the C<$^E> value will be used as the exit code as is. 661 255 will be encoded in VMS status values with severity levels of 663 value with a severity level of ERROR. This is to be compatible with 666 The minimum severity level set by C<die> in C<PERL_VMS_POSIX_EXIT> mode 1085 For other termination statuses, the severity portion of the 1086 subprocess's exit status is used: if the severity was success or 1087 informational, these bits are all 0; if the severity was 1088 warning, they contain a value of 1; if the severity was 1089 error or fatal error, they contain the actual severity bits, [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.def | 141 // Modifiers for 'severity' clause.
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | gccbug.in | 178 -s | --severity) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
|