HomeSort by: relevance | last modified time | path
    Searched refs:report (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/usr.sbin/bootp/common/
report.h 1 /* $NetBSD: report.h,v 1.5 2002/07/14 00:26:18 wiz Exp $ */
3 /* report.h */
6 extern void report(int, const char *, ...)
tzone.c 27 #include "report.h"
48 report(LOG_ERR, "gettimeofday: %s", get_errmsg());
Makefile 7 report.c tzone.c
lookup.c 28 #include "report.h"
47 report(LOG_ERR, "no HW addr for host \"%s\"",
56 report(LOG_ERR, "no lookup for HW addr type %d", htype);
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
hwaddr.c 40 #include "report.h"
102 report(LOG_ERR, "open /dev/arp: %s\n", get_errmsg());
109 report(LOG_ERR, "ioctl I_STR: %s\n", get_errmsg());
121 report(LOG_ERR, "ioctl SIOCSARP: %s", get_errmsg());
137 report(LOG_INFO, "%s", buf);
140 report(LOG_ERR, "arp failed, exit code=0x%x", status);
readfile.c 59 #include "report.h"
304 report(LOG_ERR, "Unable to allocate hash tables.");
329 report(LOG_ERR, "stat on \"%s\": %s",
339 report(LOG_INFO, "bootptab mtime: %s",
352 report(LOG_INFO, "reading %s\"%s\"",
360 report(LOG_ERR, "error opening \"%s\": %s", bootptab, get_errmsg());
367 report(LOG_ERR, "fstat: %s", get_errmsg());
410 report(LOG_ERR, "can not get IP addr for %s", hn);
411 report(LOG_ERR, "(dummy names should start with '.')");
420 report(LOG_ERR, "can not get netmask for %s", hn)
    [all...]
dumptab.c 25 #include "report.h"
38 report(LOG_INFO, "No dumptab support!");
98 report(LOG_ERR, "error opening \"%s\": %s",
117 report(LOG_INFO, "dumped %d entries to \"%s\".", n, filename);
getif.c 35 #include "report.h"
83 report(LOG_ERR, "ioctl SIOCGIFCONF");
  /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/bootptest/
getether.c 27 #include "report.h"
55 report(LOG_ERR, "getether: socket(INET,DGRAM) failed");
59 report(LOG_ERR, "getether: ioctl SIOCRPHYSADDR failed");
94 report(LOG_ERR, "getether: open /dev/nit: %s",
100 report(LOG_ERR, "getether: NIOCBIND on nit");
104 report(LOG_ERR, "getether: SIOCGIFADDR on nit");
140 report(LOG_ERR, "getether: socket %s: %s", ifname, get_errmsg());
147 report(LOG_ERR, "getether: SIOCGIFCONF: %s", get_errmsg());
218 report(LOG_ERR, "getether: open %s: %s",
238 report(LOG_ERR, "getether: attach: putmsg: %s", get_errmsg())
    [all...]
  /src/usr.sbin/bootp/bootpgw/
bootpgw.c 72 #include "report.h"
163 report(LOG_INFO, "version %s.%d", VERSION, PATCHLEVEL);
171 report(LOG_ERR, "malloc failed");
197 report(LOG_INFO, "getsockname: not an INET socket");
378 report(LOG_ERR, "socket: %s", get_network_errmsg());
389 report(LOG_ERR,
403 report(LOG_ERR, "bind: %s", get_network_errmsg());
414 report(LOG_ERR,
431 report(LOG_ERR, "poll: %s", get_errmsg());
436 report(LOG_INFO, "exiting after %d minute%s of inactivity"
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_debugging.cc 67 int __tsan_get_report_data(void *report, const char **description, int *count,
72 const ReportDesc *rep = (ReportDesc *)report;
86 int __tsan_get_report_tag(void *report, uptr *tag) {
87 const ReportDesc *rep = (ReportDesc *)report;
93 int __tsan_get_report_stack(void *report, uptr idx, void **trace,
95 const ReportDesc *rep = (ReportDesc *)report;
103 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr,
106 const ReportDesc *rep = (ReportDesc *)report;
119 int __tsan_get_report_loc(void *report, uptr idx, const char **type,
123 const ReportDesc *rep = (ReportDesc *)report;
    [all...]
tsan_interface.h 99 // an error. The argument 'report' is an opaque pointer that can be used to
100 // gather additional information using other TSan report API functions.
102 void __tsan_on_report(void *report);
105 // returns an opaque pointer to the current report. Otherwise returns NULL.
109 // Returns a report's description (issue type), number of duplicate issues
114 int __tsan_get_report_data(void *report, const char **description, int *count,
120 /// Retrieves the "tag" from a report (for external-race report types). External
125 /// \param report opaque pointer to the current report (obtained as argument i
    [all...]
  /src/usr.sbin/bootp/bootpd/
bootpd.c 90 #include "report.h"
202 report(LOG_INFO, "version %s.%d", VERSION, PATCHLEVEL);
210 report(LOG_ERR, "malloc failed");
236 report(LOG_ERR, "getsockname: not an INET socket");
406 report(LOG_ERR, "%s: chdir failed", chdir_path);
426 report(LOG_ERR, "socket: %s", get_network_errmsg());
438 report(LOG_ERR,
452 report(LOG_ERR, "bind: %s", get_network_errmsg());
464 report(LOG_ERR,
474 report(LOG_ERR, "signal: %s", get_errmsg())
    [all...]
  /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/usr.sbin/bootp/bootpef/
bootpef.c 69 #include "report.h"
141 report(LOG_ERR, "malloc failed");
229 report(LOG_ERR, "%s: chdir failed", chdir_path);
297 report(LOG_ERR, "%s: too much option data",
307 report(LOG_ERR, "error opening \"%s\": %s",
313 report(LOG_ERR, "write failed on \"%s\" : %s",
  /src/usr.bin/usbhidctl/
usbhid.c 428 allocreport(struct Sreport *report, report_desc_t rd, int repindex)
434 errx(1, "Negative report size");
435 report->size = reptsize;
437 if (report->size > 0) {
440 * report in the variable-sized data field.
442 report->buffer = malloc(sizeof(*report->buffer) -
443 sizeof(report->buffer->ucr_data) +
444 report->size);
445 if (report->buffer == NULL
    [all...]
  /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/sys/dev/usb/
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...]
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);
  /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/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/
README.md 30 cd /usr/tests; atf-run | atf-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...]

Completed in 24 milliseconds

1 2 3