Searched refs:report (Results 101 - 125 of 270) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.h64 std::string FormatDescription(StructuredData::ObjectSP report);
66 std::string GenerateSummary(StructuredData::ObjectSP report);
68 lldb::addr_t GetMainRacyAddress(StructuredData::ObjectSP report);
70 std::string GetLocationDescription(StructuredData::ObjectSP report,
H A DTSanRuntime.cpp67 int __tsan_get_report_data(void *report, const char **description, int *count,
72 int __tsan_get_report_stack(void *report, unsigned long idx, void **trace,
74 int __tsan_get_report_mop(void *report, unsigned long idx, int *tid, void **addr,
77 int __tsan_get_report_loc(void *report, unsigned long idx, const char **type,
81 int __tsan_get_report_mutex(void *report, unsigned long idx, unsigned long *mutex_id, void **addr,
83 int __tsan_get_report_thread(void *report, unsigned long idx, int *tid, unsigned long *os_id,
86 int __tsan_get_report_unique_tid(void *report, unsigned long idx, int *tid);
90 int (*ptr__tsan_get_report_loc_object_type)(void *report, unsigned long idx, const char **object_type);
97 void *report;
167 t.report
489 FormatDescription(StructuredData::ObjectSP report) argument
612 GenerateSummary(StructuredData::ObjectSP report) argument
699 GetMainRacyAddress(StructuredData::ObjectSP report) argument
714 GetLocationDescription( StructuredData::ObjectSP report, addr_t &global_addr, std::string &global_name, std::string &filename, uint32_t &line) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp244 void report(const char *msg, const MachineFunction *MF);
245 void report(const char *msg, const MachineBasicBlock *MBB);
246 void report(const char *msg, const MachineInstr *MI);
247 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
354 // then report an error.
358 report("Function has NoVRegs property but there are VReg operands", &MF);
415 report("Bad instruction parent pointer", &*MFI);
422 report("Missing BundledPred flag, "
426 report("BundledPred flag is set, "
437 report("N
475 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { function in class:MachineVerifier
490 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { function in class:MachineVerifier
501 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { function in class:MachineVerifier
510 void MachineVerifier::report(const char *msg, const MachineOperand *MO, function in class:MachineVerifier
[all...]
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dconfig.c171 static void report(const char *fmt, ...) __dead2 __printflike(1, 2);
174 report(const char *fmt, ...) function
234 report("%s: %m", fname);
262 report("%m");
267 report("%m");
317 report("pushing EOF");
319 report("pushing third char");
343 report("read error: %m");
410 report("unexpected EOF");
412 report("expectin
[all...]
/freebsd-11-stable/libexec/bootpd/bootpgw/
H A Dbootpgw.c80 #include "report.h"
181 report(LOG_INFO, "version %s.%d", VERSION, PATCHLEVEL);
189 report(LOG_ERR, "malloc failed");
215 report(LOG_INFO, "getsockname: not an INET socket");
393 report(LOG_ERR, "socket: %s", get_network_errmsg());
404 report(LOG_ERR,
418 report(LOG_ERR, "bind: %s", get_network_errmsg());
429 report(LOG_ERR,
451 report(LOG_ERR, "select: %s", get_errmsg());
456 report(LOG_INF
[all...]
/freebsd-11-stable/contrib/llvm-project/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...]
/freebsd-11-stable/tools/regression/poll/
H A Dpipepoll.c57 report(int num, const char *state, int expected, int got, int res, function
107 report(num++, "0", 0, pfd.revents, res, 0);
125 report(num++, "1", 0, pfd.revents, res, 0);
133 report(num++, "2", POLLIN, pfd.revents, res, 1);
138 report(num++, "2a", 0, pfd.revents, res, 0);
146 report(num++, "3", POLLHUP, pfd.revents, res, 1);
161 report(num++, "4", 0, pfd.revents, res, 0);
169 report(num++, "5", POLLIN, pfd.revents, res, 1);
187 report(num++, "6", POLLIN | POLLHUP, pfd.revents, res, 1);
192 report(nu
[all...]
H A Dpipeselect.c36 report(int num, const char *state, int expected, int got) function
91 report(num++, "0", 1, FD_ISSET(fd, &rfds));
110 report(num++, "1", 0, FD_ISSET(fd, &rfds));
119 report(num++, "2", 1, FD_ISSET(fd, &rfds));
125 report(num++, "2a", 0, FD_ISSET(fd, &rfds));
134 report(num++, "3", 1, FD_ISSET(fd, &rfds));
150 report(num++, "4", 0, FD_ISSET(fd, &rfds));
159 report(num++, "5", 1, FD_ISSET(fd, &rfds));
173 report(num++, "6", 1, FD_ISSET(fd, &rfds));
179 report(nu
[all...]
/freebsd-11-stable/libexec/bootpd/
H A Dbootpd.c91 #include "report.h"
212 report(LOG_INFO, "version %s.%d", VERSION, PATCHLEVEL);
220 report(LOG_ERR, "malloc failed");
246 report(LOG_ERR, "getsockname: not an INET socket");
257 report(LOG_ERR, "bootpd: can't get hostname\n");
280 report(LOG_ERR,
303 report(LOG_ERR,
319 report(LOG_ERR,
343 report(LOG_ERR,
357 report(LOG_ER
[all...]
H A DMakefile13 lookup.c getif.c hwaddr.c report.c tzone.c rtmsg.c
/freebsd-11-stable/contrib/dialog/samples/
H A Dchecklist-8bit30 . ./report-tempfile
H A Dradiolist430 . ./report-tempfile
H A Dtextbox-both21 . ./report-button
H A Dtextbox-help20 . ./report-button
H A Dtextbox320 . ./report-button
H A Dtreeview22 . ./report-tempfile
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_fm.c694 zio_cksum_report_t *report = kmem_zalloc(sizeof (*report), KM_SLEEP); local
697 zio->io_vsd_ops->vsd_cksum_report(zio, report, arg);
699 zio_vsd_default_cksum_report(zio, report, arg);
703 report->zcr_ckinfo = kmem_zalloc(sizeof (*info), KM_SLEEP);
704 bcopy(info, report->zcr_ckinfo, sizeof (*info));
707 report->zcr_align = 1ULL << vd->vdev_top->vdev_ashift;
708 report->zcr_length = length;
711 zfs_ereport_start(&report->zcr_ereport, &report
732 zfs_ereport_finish_checksum(zio_cksum_report_t *report, const void *good_data, const void *bad_data, boolean_t drop_if_identical) argument
772 zfs_ereport_send_interim_checksum(zio_cksum_report_t *report) argument
[all...]
/freebsd-11-stable/libexec/bootpd/tools/bootpef/
H A DMakefile7 hwaddr.c report.c tzone.c rtmsg.c
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DReturnPointerRangeChecker.cpp81 // Generate a report for this bug.
82 auto report = local
85 report->addRange(RetE->getSourceRange());
86 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));
/freebsd-11-stable/contrib/libucl/
H A DMakefile.am14 .PHONY = coverage-requirement-check clean-coverage-report
22 coverage: coverage-requirement-check clean-coverage coverage-build coverage-check coverage-report
57 coverage-report: coverage-lcov
67 clean-coverage-report:
71 clean-coverage: clean-coverage-report
/freebsd-11-stable/contrib/binutils/binutils/
H A Dbucomm.h32 void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
/freebsd-11-stable/usr.sbin/zonectl/
H A Dzonectl.c128 zone_print_status zonectl_print_rz(struct disk_zone_report *report,
219 zonectl_print_rz(struct disk_zone_report *report, zone_output_flags out_flags, argument
223 struct disk_zone_rep_header *header = &report->header;
240 if ((report->entries_available - report->entries_filled) > 0) {
253 report->entries_available,
293 for (i = 0; i < report->entries_filled; i++) {
294 entry = &report->entries[i];
375 report->starting_id = next_lba;
454 "ambiguous" : "invalid", "report zone
[all...]
/freebsd-11-stable/contrib/llvm-project/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);
148 return report("Could not create file: " + tempPath.str(), Diag);
176 return report(StringRef("File does not exist: ") + origFE->getName(),
182 return report(E
256 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp393 err.report(m_ec, "failed to determine attributes for the specified path");
553 return err.report(capture_errno());
559 return err.report(capture_errno());
579 return err.report(m_ec1);
586 return err.report(m_ec1);
591 return err.report(errc::function_not_supported);
603 return err.report(errc::file_exists);
620 return err.report(errc::is_a_directory);
639 return err.report(m_ec2);
753 return err.report(m_e
[all...]

Completed in 246 milliseconds

1234567891011