HomeSort by: relevance | last modified time | path
    Searched defs:report (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_report.cc 47 ScopedAllocatorErrorReport report("calloc-overflow", stack); local in function:__sanitizer::ReportCallocOverflow
48 Report("ERROR: %s: calloc parameters overflow: count * size (%zd * %zd) "
57 ScopedAllocatorErrorReport report("pvalloc-overflow", stack); local in function:__sanitizer::ReportPvallocOverflow
58 Report("ERROR: %s: pvalloc parameters overflow: size 0x%zx rounded up to "
68 ScopedAllocatorErrorReport report("invalid-allocation-alignment", stack); local in function:__sanitizer::ReportInvalidAllocationAlignment
69 Report("ERROR: %s: invalid allocation alignment: %zd, alignment must be a "
78 ScopedAllocatorErrorReport report("invalid-aligned-alloc-alignment", stack); local in function:__sanitizer::ReportInvalidAlignedAllocAlignment
80 Report("ERROR: %s: invalid alignment requested in "
85 Report("ERROR: %s: invalid alignment requested in aligned_alloc: %zd, "
96 ScopedAllocatorErrorReport report("invalid-posix-memalign-alignment" local in function:__sanitizer::ReportInvalidPosixMemalignAlignment
109 ScopedAllocatorErrorReport report("allocation-size-too-big", stack); local in function:__sanitizer::ReportAllocationSizeTooBig
118 ScopedAllocatorErrorReport report("out-of-memory", stack); local in function:__sanitizer::ReportOutOfMemory
    [all...]
  /src/usr.sbin/bootp/common/
report.c 1 /* $NetBSD: report.c,v 1.7 2008/05/02 19:22:10 xtraeme Exp $ */
5 __RCSID("$NetBSD: report.c,v 1.7 2008/05/02 19:22:10 xtraeme Exp $");
9 * report() - calls syslog
18 #include "report.h"
95 report(int priority, const char *fmt,...) function in typeref:typename:void
  /src/bin/sleep/
sleep.c 61 static void report(const time_t, const time_t, const char *const);
204 report(ntime.tv_sec, original, msg);
210 report(const time_t remain, const time_t original, const char * const msg) function in typeref:typename:void
  /src/usr.bin/make/
Makefile 27 # Whether to generate a coverage report after running the tests.
116 ${MAKE} report-coverage
140 @env USE_COVERAGE=yes make report-coverage > coverage.txt
143 report-coverage: .PHONY
  /src/usr.bin/tset/
tset.c 51 static void report(const char *, int, u_int);
193 report("Erase", VERASE, CERASE);
194 report("Kill", VKILL, CKILL);
195 report("Interrupt", VINTR, CINTR);
222 report(const char *name, int which, u_int def) function in typeref:typename:void
  /src/sys/dev/usb/
uthum.c 85 size_t sc_flen; /* feature report length */
86 size_t sc_olen; /* output report length */
253 uint8_t cmdbuf[32], report[256]; local in function:uthum_read_data
291 flen = uimin(sc->sc_flen, sizeof(report));
293 report, flen))
295 memcpy(buf, report, len);
ucycom.c 135 size_t sc_flen; /* feature report length */
136 size_t sc_olen; /* output report length */
254 /* Nothing interesting to report */
406 /* Allocate an output report buffer */
525 * The 8 byte output report uses byte 0 for control and byte
528 * The 32 byte output report uses byte 0 for control. Byte 1
584 DPRINTFN(2,("ucycomstart: unknown output report size (%zd)\n",
907 uint8_t report[5]; local in function:ucycom_configure
939 report[0] = baud & 0xff;
940 report[1] = (baud >> 8) & 0xff
1137 uint8_t report[5]; local in function:ucycom_get_cfg
    [all...]
uatp.c 38 * on another USB report id, which the ums(4) driver can handle, but
91 * no straightforward way to report zooming and other gestures to the
118 * report dump) fail to attach when you think they should work?
616 * generic USB HID mice on a different report id, so we have smaller
617 * packets by one byte (uhidev handles multiplexing report ids) and
625 .input_size = 63, /* 64, minus one for the report id. */
946 "vendor 0x%04x, product 0x%04x, report id %d\n",
1299 uint8_t report[GEYSER34_MODE_PACKET_SIZE]; local in function:geyser34_enable_raw_mode
1302 DPRINTF(sc, UATP_DEBUG_RESET, ("get feature report\n"));
1304 GEYSER34_MODE_REPORT_ID, report, sizeof(report))
    [all...]
  /src/usr.sbin/mrouted/
route.c 336 * Process a route report for a single origin, creating or updating the
338 * address of a neighboring router from which the report arrived, or zero
350 * subnet or tunnel over which the report arrived, and normalizing
369 * Don't create a new entry if the report says it's unreachable,
406 * If the report claims reachability, update the entry to use
424 * The report has come either from the interface directly-connected
455 * The report is for an origin we consider reachable; the report
486 * The report came from a vif other than the route's parent vif.
732 * Process an incoming route report message
833 report(int which_routes, vifi_t vifi, u_int32_t dst) function in typeref:typename:void
    [all...]
  /src/sys/dev/bluetooth/
btkbd.c 354 uint8_t report; local in function:btkbd_set_leds
363 * report size from the descriptor but for keyboards it should
366 report = 0;
368 report |= 1 << sc->sc_scroloc.pos;
371 report |= 1 << sc->sc_numloc.pos;
374 report |= 1 << sc->sc_capsloc.pos;
377 (*sc->sc_output)(&sc->sc_hidev, &report, sizeof(report));
  /src/sys/dev/acpi/
apei.c 763 * names, minimum data lengths, and functions to report them.
786 * apei_gede_report_header(sc, gede, ctx, ratelimitok, &headerlen, &report)
788 * Report the header of the ith Generic Error Data Entry in the
794 * Return the report type in report, or NULL if not known because
822 const struct apei_cper_report *const report = local in function:apei_gede_report_header
825 if (memcmp(&sectype, report->type, sizeof(sectype)) != 0)
830 ctx, guidstr, report->name);
832 *reportp = report;
858 * shown at the time of a hardware error report, not somethin
1213 const struct apei_cper_report *report; local in function:apei_gesb_report
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_perf.c 126 * and while we could pull a report out of the OA buffer we can't
127 * trigger a report from the cpu on demand.
129 * Related to being report based; the OA counters are configured in HW as a
134 * OA unit report format used to capture all counters in a set, or specify a
150 * With the OA unit's report formats, counters are packed together as 32
151 * or 40bit values, with the largest report size being 256 bytes.
175 * ring buffer. To include more than the OA report we'd have to copy the
176 * report into an intermediate larger buffer. I'd been considering allowing a
190 * majority of the OA driver ran in atomic context, including all OA report
252 * by checking for a zeroed report-id field in tail reports, we want to accoun
784 u8 *report = oa_buf_base + head; local in function:gen8_append_oa_reports
1104 u8 *report = oa_buf_base + head; local in function:gen7_append_oa_reports
    [all...]

Completed in 69 milliseconds