| /freebsd-src/share/man/man4/ |
| H A D | hidraw.4 | 67 Get the report identifier used by this HID report. 69 Get the HID report descriptor. 72 bytes of the report descriptor data into the memory 81 The report descriptor is delivered 95 will return the current value of the input report. 104 Get a report from the device without waiting for data on 108 bytes of the report data into the memory specified by 115 field indicates which report is requested. 122 is the report numbe [all...] |
| H A D | uhid.4 | 63 Get the report identifier used by this HID report. 65 Get the HID report descriptor. 68 bytes of the report descriptor data into the memory 77 The report descriptor is delivered 91 will return the current value of the input report. 100 Get a report from the device without waiting for data on 104 bytes of the report data into the memory specified by 111 field indicates which report is requested. 119 Set a report in the device. 122 field indicates which report is to be set. [all …]
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | report.cpp | 1 //===-- report.cpp ----------------------------------------------*- C++ -*-===// 9 #include "report.h" 43 ScopedErrorReport Report; in reportCheckFailed() local 44 Report.append("CHECK failed @ %s:%d %s ((u64)op1=%llu, (u64)op2=%llu)\n", in reportCheckFailed() 50 ScopedErrorReport Report; in reportError() local 51 Report.append("%s\n", Message); in reportError() 62 ScopedErrorReport Report; in reportInvalidFlag() local 63 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); in reportInvalidFlag() 69 ScopedErrorReport Report; in reportHeaderCorruption() local 70 Report.append("corrupted chunk header at address %p\n", Ptr); in reportHeaderCorruption() [all …]
|
| /freebsd-src/sys/dev/hid/ |
| H A D | ps4dshock.c | 71 0x85, 0x01, /* Report ID (1) */ 78 0x75, 0x08, /* Report Size (8) */ 79 0x95, 0x04, /* Report Count (4) */ 87 0x75, 0x04, /* Report Size (4) */ 88 0x95, 0x01, /* Report Count (1) */ 97 0x75, 0x01, /* Report Size (1) */ 98 0x95, 0x0E, /* Report Count (14) */ 102 0x75, 0x06, /* Report Size (6) */ 103 0x95, 0x01, /* Report Count (1) */ 112 0x75, 0x08, /* Report Size (8) */ [all …]
|
| H A D | hidrdesc.h | 31 * This file contains replacements for broken HID report descriptors. 182 * The descriptor has no output report format, thus preventing you from 190 0x75, 0x08, /* REPORT SIZE (8) */\ 191 0x95, 0x01, /* REPORT COUNT (1) */\ 194 0x75, 0x08, /* REPORT SIZE (8) */\ 195 0x95, 0x01, /* REPORT COUNT (1) */\ 203 0x75, 0x01, /* REPORT SIZE (1) */\ 208 0x95, 0x04, /* REPORT COUNT (4) */\ 217 0x75, 0x01, /* REPORT SIZE (1) */\ 222 0x95, 0x07, /* REPORT COUNT (7) */\ [all …]
|
| /freebsd-src/contrib/llvm-project/compiler-rt/include/sanitizer/ |
| H A D | tsan_interface.h | 131 // report a bug report otherwise. 189 /// Returns a report's description. 191 /// Returns a report's description (issue type), number of duplicate issues 196 /// \param report Opaque pointer to the current report. 197 /// \param[out] description Report type description. 210 void *report, const char **description, int *count, int *stack_count, 214 /// Returns information about stack traces included in the report. 216 /// \param report Opaque pointer to the current report. 217 /// \param idx Index to the report's stacks. 221 int SANITIZER_CDECL __tsan_get_report_stack(void *report, unsigned long idx, [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 257 void report(const char *msg, const MachineFunction *MF); 258 void report(const char *msg, const MachineBasicBlock *MBB); 259 void report(const char *msg, const MachineInstr *MI); 260 void report(const char *msg, const MachineOperand *MO, unsigned MONum, 262 void report(const Twine &Msg, const MachineInstr *MI); 417 // then report an error. in verify() 421 report("Function has NoVRegs property but there are VReg operands", &MF); in verify() 484 report("Bad instruction parent pointer", &MBB); in verify() 491 report("Missing BundledPred flag, " in verify() 495 report("BundledPre in verify() 503 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { report() function in MachineVerifier 518 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { report() function in MachineVerifier 529 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { report() function in MachineVerifier 538 void MachineVerifier::report(const char *msg, const MachineOperand *MO, report() function in MachineVerifier 547 void MachineVerifier::report(const Twine &Msg, const MachineInstr *MI) { report() function in MachineVerifier [all...] |
| /freebsd-src/usr.sbin/zonectl/ |
| H A D | zonectl.8 | 114 Issue the Report Zones command. 116 Specify report options with 139 For the Report Zones command, this tells the drive to report starting with 145 For the Report Zones command, specify a subset of zones to report. 148 Report all zones. 151 Report only empty zones. 153 Report zones that are implicitly open. 157 Report zones that are explicitly open. 159 Report zones that have been closed by the host. 161 Report zones that are full. [all …]
|
| /freebsd-src/lib/libusbhid/ |
| H A D | usbhid.3 | 100 .Em "report descriptor" 116 functions allow to synchronously get and set specific report if device 118 For devices with multiple report IDs, wanted ID should be provided in the 121 The report descriptor ID can be obtained by calling 123 A report descriptor can be obtained by calling 128 Alternatively a data buffer containing the report descriptor can be 132 When the report descriptor 143 To parse the report descriptor the 145 function should be called with a report descriptor, a set that 146 describes which items that are interesting, and the desired report [all …]
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_allocator_report.cpp | 46 ScopedAllocatorErrorReport report("calloc-overflow", stack); in ReportCallocOverflow() local 47 Report("ERROR: %s: calloc parameters overflow: count * size (%zd * %zd) " in ReportCallocOverflow() 57 ScopedAllocatorErrorReport report("reallocarray-overflow", stack); in ReportReallocArrayOverflow() local 58 Report( in ReportReallocArrayOverflow() 68 ScopedAllocatorErrorReport report("pvalloc-overflow", stack); in ReportPvallocOverflow() local 69 Report("ERROR: %s: pvalloc parameters overflow: size 0x%zx rounded up to " in ReportPvallocOverflow() 79 ScopedAllocatorErrorReport report("invalid-allocation-alignment", stack); in ReportInvalidAllocationAlignment() local 80 Report("ERROR: %s: invalid allocation alignment: %zd, alignment must be a " in ReportInvalidAllocationAlignment() 89 ScopedAllocatorErrorReport report("invalid-aligned-alloc-alignment", stack); in ReportInvalidAlignedAllocAlignment() local 91 Report("ERROR: %s: invalid alignment requested in " in ReportInvalidAlignedAllocAlignment() [all …]
|
| /freebsd-src/contrib/ntp/sntp/unity/auto/ |
| H A D | unity_test_summary.rb | 17 attr_reader :report, :total_tests, :failures, :ignored accessor in UnityTestSummary 20 @report = '' 52 @report += "\n" 53 @report += "--------------------------\n" 54 @report += "UNITY IGNORED TEST SUMMARY\n" 55 @report += "--------------------------\n" 56 @report += ignore_output.flatten.join("\n") 60 @report += "\n" 61 @report += "--------------------------\n" 62 @report += "UNITY FAILED TEST SUMMARY\n" [all …]
|
| H A D | unity_test_summary.py | 15 self.report = '' 46 self.report += "\n" 47 self.report += "--------------------------\n" 48 self.report += "UNITY IGNORED TEST SUMMARY\n" 49 self.report += "--------------------------\n" 50 self.report += "\n".join(ignore_output) 53 self.report += "\n" 54 self.report += "--------------------------\n" 55 self.report += "UNITY FAILED TEST SUMMARY\n" 56 self.report += "--------------------------\n" [all …]
|
| /freebsd-src/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | operations.cpp | 89 return err.report(capture_errno()); in __canonical() 99 return err.report(capture_errno()); in __canonical() 116 return err.report(m_ec1); in __copy() 122 return err.report(m_ec1); in __copy() 126 return err.report(errc::function_not_supported); in __copy() 135 return err.report(errc::file_exists); in __copy() 152 return err.report(errc::is_a_directory); in __copy() 173 return err.report(m_ec2); in __copy() 266 return err.report(m_ec); in __copy_file() 273 return err.report(m_e in __copy_file() [all...] |
| /freebsd-src/contrib/wpa/wpa_supplicant/ |
| H A D | rrm.c | 27 "RRM: Unexpected neighbor report timeout"); in wpas_rrm_neighbor_rep_timeout_handler() 31 wpa_printf(MSG_DEBUG, "RRM: Notifying neighbor report - NONE"); in wpas_rrm_neighbor_rep_timeout_handler() 57 * wpas_rrm_process_neighbor_rep - Handle incoming neighbor report 59 * @report: Neighbor report buffer, prefixed by a 1-byte dialog token 60 * @report_len: Length of neighbor report buffer 63 const u8 *report, size_t report_len) in wpas_rrm_process_neighbor_rep() argument 67 wpa_hexdump(MSG_DEBUG, "RRM: New Neighbor Report", report, report_len); in wpas_rrm_process_neighbor_rep() 71 if (report[ in wpas_rrm_process_neighbor_rep() 380 struct wpabuf *report = wpabuf_alloc(len + 3); wpas_rrm_send_msr_report_mpdu() local 1383 struct wpabuf *report; wpas_rrm_handle_radio_measurement_request() local 1424 struct rrm_link_measurement_report report; wpas_rrm_handle_link_measurement_request() local [all...] |
| /freebsd-src/libexec/bootpd/ |
| H A D | Makefile.UNIX | 142 lookup.o getif.o hwaddr.o tzone.o report.o $(STRERROR) 147 lookup.o hwaddr.o tzone.o report.o $(STRERROR) 151 OBJ_GW= bootpgw.o getif.o hwaddr.o report.o $(STRERROR) 156 report.o $(STRERROR) 161 TRYLOOK= trylook.o lookup.o report.o $(STRERROR) 166 TRYGETIF= trygetif.o getif.o report.o $(STRERROR) 171 TRYGETEA= trygetea.o getether.o report.o $(STRERROR) 176 report.o : report.c 188 bootpd.o : readfile.h report.h tzone.h patchlevel.h getif.h 190 bootpef.o : readfile.h report.h tzone.h patchlevel.h [all …]
|
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| H A D | MPIBugReporter.cpp | 33 auto Report = std::make_unique<PathSensitiveBugReport>( in reportDoubleNonblocking() local 36 Report->addRange(MPICallEvent.getSourceRange()); in reportDoubleNonblocking() 40 Report->addRange(Range); in reportDoubleNonblocking() 42 Report->addVisitor(std::make_unique<RequestNodeVisitor>( in reportDoubleNonblocking() 44 Report->markInteresting(RequestRegion); in reportDoubleNonblocking() 46 BReporter.emitReport(std::move(Report)); in reportDoubleNonblocking() 56 auto Report = std::make_unique<PathSensitiveBugReport>(MissingWaitBugType, in reportMissingWait() local 61 Report->addRange(Range); in reportMissingWait() 62 Report->addVisitor(std::make_unique<RequestNodeVisitor>( in reportMissingWait() 64 Report->markInteresting(RequestRegion); in reportMissingWait() [all …]
|
| /freebsd-src/contrib/kyua/integration/ |
| H A D | cmd_report_test.sh | 53 # Ensure the results of 'report' come from the database. 72 atf_check -s exit:0 -o file:expout -e empty kyua report 84 atf_check -s exit:0 -o file:expout -e empty kyua report 92 atf_check -s exit:2 -o empty -e file:experr kyua report 102 -e empty kyua report --results-file="$(cat dbfile_name1)" \ 105 -e empty kyua report --results-file="$(cat dbfile_name2)" \ 113 kyua report --results-file=foo 121 cat >report <<EOF 130 atf_check -s exit:0 -o file:report -e empty -x kyua report \ [all...] |
| H A D | cmd_report_html_test.sh | 56 # Ensure the results of 'report-html' come from the database. 101 atf_check -s exit:0 -o ignore -e empty kyua report-html 143 atf_check -s exit:2 -o empty -e file:experr kyua report-html 152 atf_check -s exit:0 -o ignore -e empty kyua report-html \ 154 grep "MOCK.*mock1" html/context.html || atf_fail "Invalid context in report" 157 atf_check -s exit:0 -o ignore -e empty kyua report-html \ 159 grep "MOCK.*mock2" html/context.html || atf_fail "Invalid context in report" 166 kyua report-html --results-file=foo 174 atf_check -s exit:0 -o ignore -e empty kyua report-html 177 atf_check -s exit:0 -o ignore -e empty kyua report-html --force [all …]
|
| /freebsd-src/tools/regression/poll/ |
| H A D | sockpoll.c | 66 report(int num, const char *state, int expected, int got) in report() function 129 report(num++, "initial 0", POLLOUT, pfd0.revents); in main() 132 report(num++, "initial 1", POLLOUT, pfd1.revents); in main() 137 report(num++, "after large write", 0, pfd0.revents); in main() 140 report(num++, "other side after large write", POLLIN | POLLOUT, pfd1.revents); in main() 144 report(num++, "other side after close", POLLIN | POLLHUP, pfd1.revents); in main() 149 report(num++, "other side after reading input", POLLHUP, pfd1.revents); in main() 158 report(num++, "after shutdown(SHUT_WR)", POLLOUT, pfd0.revents); in main() 161 report(num++, "other side after shutdown(SHUT_WR)", POLLIN | POLLOUT, pfd1.revents); in main() 173 report(num++, "other side after reading EOF", POLLIN | POLLOUT, pfd1.revents); in main() [all …]
|
| /freebsd-src/contrib/kyua/doc/ |
| H A D | Makefile.am.inc | 47 doc/results-files-report-example.mdoc \ 95 man_MANS += doc/kyua-report-html.1 96 CLEANFILES += doc/kyua-report-html.1 97 EXTRA_DIST += doc/kyua-report-html.1.in 98 doc/kyua-report-html.1: $(srcdir)/doc/kyua-report-html.1.in $(MAN_DEPS) 99 $(AM_V_GEN)name=kyua-report-html.1; $(BUILD_MANPAGE) 101 man_MANS += doc/kyua-report-junit.1 102 CLEANFILES += doc/kyua-report-junit.1 103 EXTRA_DIST += doc/kyua-report-junit.1.in 104 doc/kyua-report-junit.1: $(srcdir)/doc/kyua-report-junit.1.in $(MAN_DEPS) [all …]
|
| H A D | kyua-report.1.in | 32 .Nm "kyua report" 45 report for user consumption on the terminal. 66 Specifies the path to which the report should be written to. 76 Comma-separated list of the test result types to include in the report. 88 and all result types are shown in the report. 92 Showing the passed tests by default clutters the report with too much 95 Prints a detailed report of the execution. 114 __include__ results-files-report-example.mdoc REPORT_COMMAND=report 117 .Xr kyua-report-html 1 , 118 .Xr kyua-report-junit 1
|
| /freebsd-src/contrib/bsnmp/snmpd/ |
| H A D | config.c | 169 * Report an error and jump to the error label 171 static void report(const char *fmt, ...) __dead2 __printflike(1, 2); 174 report(const char *fmt, ...) in report() function 234 report("%s: %m", fname); in input_open_file() 262 report("%m"); in input_open_macro() 267 report("%m"); in input_open_macro() 317 report("pushing EOF"); in input_ungetc() 319 report("pushing third char"); in input_ungetc() 343 report("read error: %m"); in input_getc_raw() 410 report("unexpected EOF"); in input_getc() [all …]
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 67 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); 100 void *report; 166 t.report 492 FormatDescription(StructuredData::ObjectSP report) FormatDescription() argument 615 GenerateSummary(StructuredData::ObjectSP report) GenerateSummary() argument 699 GetMainRacyAddress(StructuredData::ObjectSP report) GetMainRacyAddress() argument 715 GetLocationDescription(StructuredData::ObjectSP report,addr_t & global_addr,std::string & global_name,std::string & filename,uint32_t & line) GetLocationDescription() argument 809 StructuredData::ObjectSP report = NotifyBreakpointHit() local [all...] |
| /freebsd-src/contrib/dialog/ |
| H A D | CHANGES | 12 with the button-box (report by Victor Ananjevsky). 35 + add DIALOG_TIMEOUT to sample scripts, and use report-button more 61 subwindows used for input (report by Michael Wihl). 64 + add validity-checks for window pointer (report/testcase by Michael 83 (report/patch by Rainer Weikusat, Debian #970508). 87 (report by Glenn Herteg). 128 + correct rc-file lookup of "default" color (report by Grady Martin, 131 + fix a few spelling errors reported by codespell (report by Jens 134 0/1 (report/patch by Paul Cercueil, Peter Korsgaard, cf: 2018/05/31). 139 (report by Paul Cercueil, cf: 2018/06/21). [all …]
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_debugging.cpp | 74 int __tsan_get_report_data(void *report, const char **description, int *count, in __tsan_get_report_data() argument 79 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data() 93 int __tsan_get_report_tag(void *report, uptr *tag) { in __tsan_get_report_tag() argument 94 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_tag() 100 int __tsan_get_report_stack(void *report, uptr idx, void **trace, in __tsan_get_report_stack() argument 102 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack() 110 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, in __tsan_get_report_mop() argument 113 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop() 126 int __tsan_get_report_loc(void *report, uptr idx, const char **type, in __tsan_get_report_loc() argument 130 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc() [all …]
|