Searched refs:report (Results 1 - 25 of 278) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/libcxx/utils/libcxx/sym_check/
H A Dmatch.py17 report = ''
20 report += 'Matching regex "%s":\n' % regex_str
23 report += ' No matches found\n\n'
28 report += ' MATCHES: %s\n' % m['name']
29 report += '\n'
30 return found_count, report
H A Ddiff.py62 report = ''
64 report += 'Symbol added: %s\n' % maybe_demangle(sym['name'])
66 report += ' %s\n\n' % sym
68 report += '\n'
70 report += 'SYMBOL REMOVED: %s\n' % maybe_demangle(sym['name'])
72 report += ' %s\n\n' % sym
74 report += '\n'
80 report += ('SYMBOL CHANGED: %s%s%s\n\n' %
89 report += 'Summary\n'
90 report
[all...]
/openbsd-current/gnu/llvm/clang/utils/ABITest/
H A Dsummarize.sh11 if (! make test.$i.report &> /dev/null); then
H A Dbuild.sh12 $(for i in $(seq 0 $1); do echo test.$i.report; done) -k
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp46 ScopedAllocatorErrorReport report("calloc-overflow", stack);
57 ScopedAllocatorErrorReport report("reallocarray-overflow", stack);
68 ScopedAllocatorErrorReport report("pvalloc-overflow", stack);
79 ScopedAllocatorErrorReport report("invalid-allocation-alignment", stack);
89 ScopedAllocatorErrorReport report("invalid-aligned-alloc-alignment", stack);
107 ScopedAllocatorErrorReport report("invalid-posix-memalign-alignment",
121 ScopedAllocatorErrorReport report("allocation-size-too-big", stack);
130 ScopedAllocatorErrorReport report("out-of-memory", stack);
138 ScopedAllocatorErrorReport report("rss-limit-exceeded", stack);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DMachineVerifier.cpp233 void report(const char *msg, const MachineFunction *MF);
234 void report(const char *msg, const MachineBasicBlock *MBB);
235 void report(const char *msg, const MachineInstr *MI);
236 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
238 void report(const Twine &Msg, const MachineInstr *MI);
367 // then report an error.
371 report("Function has NoVRegs property but there are VReg operands", &MF);
427 report("Bad instruction parent pointer", &MBB);
434 report("Missing BundledPred flag, "
438 report("BundledPre
484 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { function in class:MachineVerifier
499 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { function in class:MachineVerifier
510 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { function in class:MachineVerifier
519 void MachineVerifier::report(const char *msg, const MachineOperand *MO, function in class:MachineVerifier
528 void MachineVerifier::report(const Twine &Msg, const MachineInstr *MI) { function in class:MachineVerifier
[all...]
/openbsd-current/gnu/llvm/clang/lib/Analysis/plugins/SampleAnalyzer/
H A DMainCallChecker.cpp39 auto report = local
41 report->addRange(Callee->getSourceRange());
42 C.emitReport(std::move(report));
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DTaintTesterChecker.cpp42 auto report = std::make_unique<PathSensitiveBugReport>(*BT, "tainted", N); local
43 report->addRange(E->getSourceRange());
44 C.emitReport(std::move(report));
H A DObjCAtSyncChecker.cpp49 auto report = std::make_unique<PathSensitiveBugReport>( local
51 bugreporter::trackExpressionValue(N, Ex, *report);
52 C.emitReport(std::move(report));
73 auto report = std::make_unique<PathSensitiveBugReport>( local
75 bugreporter::trackExpressionValue(N, Ex, *report);
77 C.emitReport(std::move(report));
H A DArrayBoundChecker.cpp77 // Generate a report for this bug.
78 auto report = local
81 report->addRange(LoadS->getSourceRange());
82 C.emitReport(std::move(report));
/openbsd-current/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.h60 std::string FormatDescription(StructuredData::ObjectSP report);
62 std::string GenerateSummary(StructuredData::ObjectSP report);
64 lldb::addr_t GetMainRacyAddress(StructuredData::ObjectSP report);
66 std::string GetLocationDescription(StructuredData::ObjectSP report,
H A DInstrumentationRuntimeTSan.cpp65 int __tsan_get_report_data(void *report, const char **description, int *count,
70 int __tsan_get_report_stack(void *report, unsigned long idx, void **trace,
72 int __tsan_get_report_mop(void *report, unsigned long idx, int *tid, void **addr,
75 int __tsan_get_report_loc(void *report, unsigned long idx, const char **type,
79 int __tsan_get_report_mutex(void *report, unsigned long idx, unsigned long *mutex_id, void **addr,
81 int __tsan_get_report_thread(void *report, unsigned long idx, int *tid, unsigned long *os_id,
84 int __tsan_get_report_unique_tid(void *report, unsigned long idx, int *tid);
88 int (*ptr__tsan_get_report_loc_object_type)(void *report, unsigned long idx, const char **object_type);
95 void *report;
165 t.report
492 FormatDescription(StructuredData::ObjectSP report) argument
614 GenerateSummary(StructuredData::ObjectSP report) argument
700 GetMainRacyAddress( StructuredData::ObjectSP report) argument
716 GetLocationDescription( StructuredData::ObjectSP report, addr_t &global_addr, std::string &global_name, std::string &filename, uint32_t &line) argument
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp72 int __tsan_get_report_data(void *report, const char **description, int *count, argument
77 const ReportDesc *rep = (ReportDesc *)report;
91 int __tsan_get_report_tag(void *report, uptr *tag) { argument
92 const ReportDesc *rep = (ReportDesc *)report;
98 int __tsan_get_report_stack(void *report, uptr idx, void **trace, argument
100 const ReportDesc *rep = (ReportDesc *)report;
108 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, argument
111 const ReportDesc *rep = (ReportDesc *)report;
124 int __tsan_get_report_loc(void *report, uptr idx, const char **type, argument
128 const ReportDesc *rep = (ReportDesc *)report;
143 __tsan_get_report_loc_object_type(void *report, uptr idx, const char **object_type) argument
153 __tsan_get_report_mutex(void *report, uptr idx, uptr *mutex_id, void **addr, int *destroyed, void **trace, uptr trace_size) argument
166 __tsan_get_report_thread(void *report, uptr idx, int *tid, tid_t *os_id, int *running, const char **name, int *parent_tid, void **trace, uptr trace_size) argument
182 __tsan_get_report_unique_tid(void *report, uptr idx, int *tid) argument
[all...]
/openbsd-current/sys/dev/usb/
H A Dupd.c92 size_t size; /* Size of the report */
100 int attached; /* Is there a matching report */
103 SLIST_ENTRY(upd_sensor) rep_next; /* next in the report list */
228 struct upd_report *report; local
262 report = &sc->sc_reports[item.report_ID];
263 if (SLIST_EMPTY(&report->sensors))
264 report->size = hid_report_size(desc,
266 SLIST_INSERT_HEAD(&report->sensors, sensor, rep_next);
309 struct upd_report *report; local
314 report
373 struct upd_report *report = &sc->sc_reports[repid]; local
[all...]
/openbsd-current/gnu/llvm/clang/tools/scan-view/share/
H A DReporter.py112 def fileReport(self, report, parameters):
118 """%(report.title, report.description)
126 msg['Subject'] = 'BUG REPORT: %s'%(report.title)
133 for file in report.files:
153 def fileReport(self, report, parameters):
/openbsd-current/gnu/llvm/libcxx/utils/
H A Dsym_diff.py60 report, is_break, is_different = diff.report_diff(
64 print(report)
67 f.write(report + '\n')
/openbsd-current/usr.bin/usbhidctl/
H A Dusbhid.c387 allocreport(struct Sreport *report, report_desc_t rd, int repindex) argument
393 errx(1, "Negative report size");
394 report->size = reptsize;
396 if (report->size > 0) {
397 report->buffer = malloc(sizeof(*report->buffer));
398 if (report->buffer == NULL)
401 report->buffer = NULL;
403 report->status = srs_clean;
407 freereport(struct Sreport *report) argument
414 getreport(struct Sreport *report, int hidfd, report_desc_t rd, int repindex) argument
429 setreport(struct Sreport *report, int hidfd, int repindex) argument
[all...]
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DFileRemapper.cpp68 return report("Error opening file: " + infoFile, Diag);
77 return report("Invalid file data: '" + lines[idx+1] + "' not a number",
85 return report("File does not exist: " + fromFilename, Diag);
91 return report("File does not exist: " + toFilename, Diag);
97 return report("File was modified: " + fromFilename, Diag);
113 return report("Could not create directory: " + outputDir, Diag);
126 return report(EC.message(), Diag);
149 return report("Could not create file: " + tempPath.str(), Diag);
177 return report(StringRef("File does not exist: ") + origFE->getName(),
183 return report(E
272 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
[all...]
/openbsd-current/gnu/usr.bin/perl/vms/
H A Dmake_command.com2 $! Record MM[SK]/Make parameters in configuration report
/openbsd-current/gnu/llvm/clang/utils/ABITest/layout/
H A DMakefile1 # Usage: make test.N.report
28 .PHONY: test.%.report
29 test.%.report: test.%.x.diff test.%.y.diff
/openbsd-current/gnu/llvm/llvm/utils/lit/utils/
H A Dcheck-coverage44 # Finally, generate the report.
45 (cd tests && python -m coverage report)
47 # Generate the HTML report, if requested.
/openbsd-current/gnu/llvm/llvm/utils/lit/lit/formats/
H A Dbase.py110 report = """Command: %s\n""" % ' '.join(["'%s'" % a
113 report += """Temporary File: %s\n""" % tmp.name
114 report += "--\n%s--\n""" % open(tmp.name).read()
115 report += """Output:\n--\n%s--""" % diags
117 return lit.Test.FAIL, report
/openbsd-current/gnu/llvm/libcxx/src/filesystem/
H A Doperations.cpp549 err.report(m_ec, "failed to determine attributes for the specified path");
715 return err.report(capture_errno());
725 return err.report(capture_errno());
745 return err.report(m_ec1);
752 return err.report(m_ec1);
757 return err.report(errc::function_not_supported);
769 return err.report(errc::file_exists);
786 return err.report(errc::is_a_directory);
805 return err.report(m_ec2);
906 return err.report(m_e
[all...]
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dcheckansi.pl34 sub report subroutine
57 report("trailing whitespace after backslash", $line)
64 report(sprintf("logical source line too long (%d > %d)",
/openbsd-current/gnu/llvm/lld/Common/
H A DDWARF.cpp19 auto report = [](Error err) { local
24 dwarf->getLineTableForUnit(cu.get(), report);
29 report(expectedLT.takeError());

Completed in 318 milliseconds

1234567891011>>