Symbol: report
lib/libc/crypt/blowfish.c
678
report(data, 10);
lib/libc/crypt/blowfish.c
684
report(data2, 2);
lib/libc/crypt/blowfish.c
686
report(data2, 2);
sbin/isakmpd/isakmpd.c
463
report();
sbin/isakmpd/transport.c
133
t->vtbl->report(t);
sbin/isakmpd/transport.h
71
void (*report) (struct transport *);
sys/arch/arm64/dev/apldc.c
1127
uint8_t report[2] = { 1, leds };
sys/arch/arm64/dev/apldc.c
1132
apldchidev_cmd(sc, sc->sc_iface_kbd, flags, report, sizeof(report));
sys/dev/hid/hidkbd.c
630
hidkbd_set_leds(struct hidkbd *kbd, int leds, uint8_t *report)
sys/dev/hid/hidkbd.c
642
*report = 0;
sys/dev/hid/hidkbd.c
644
*report |= 1 << kbd->sc_scroloc.pos;
sys/dev/hid/hidkbd.c
646
*report |= 1 << kbd->sc_numloc.pos;
sys/dev/hid/hidkbd.c
648
*report |= 1 << kbd->sc_capsloc.pos;
sys/dev/hid/hidkbd.c
650
*report |= 1 << kbd->sc_compose.pos;
sys/dev/i2c/ietp.c
525
parse_input(struct ietp_softc *sc, u_char *report, int len)
sys/dev/i2c/ietp.c
544
buttons = report[IETP_TOUCH_INFO] & 7;
sys/dev/i2c/ietp.c
551
for (finger = 0, fdata = report + IETP_FINGER_DATA;
sys/dev/i2c/ietp.c
554
if ((report[IETP_TOUCH_INFO] & (1 << (finger + 3))) != 0) {
sys/dev/ic/qwx.c
21783
const struct ath11k_htc_credit_report *report, int len,
sys/dev/ic/qwx.c
21790
if (len % sizeof(*report))
sys/dev/ic/qwx.c
21793
n_reports = len / sizeof(*report);
sys/dev/ic/qwx.c
21797
for (i = 0; i < n_reports; i++, report++) {
sys/dev/ic/qwx.c
21798
if (report->eid >= ATH11K_HTC_EP_COUNT)
sys/dev/ic/qwx.c
21801
ep = &htc->endpoint[report->eid];
sys/dev/ic/qwx.c
21802
ep->tx_credits += report->credits;
sys/dev/ic/qwx.c
21805
__func__, report->eid, report->credits, ep->tx_credits);
sys/dev/ic/qwz.c
19055
const struct ath12k_htc_credit_report *report, int len,
sys/dev/ic/qwz.c
19062
if (len % sizeof(*report))
sys/dev/ic/qwz.c
19065
n_reports = len / sizeof(*report);
sys/dev/ic/qwz.c
19069
for (i = 0; i < n_reports; i++, report++) {
sys/dev/ic/qwz.c
19070
if (report->eid >= ATH12K_HTC_EP_COUNT)
sys/dev/ic/qwz.c
19073
ep = &htc->endpoint[report->eid];
sys/dev/ic/qwz.c
19074
ep->tx_credits += report->credits;
sys/dev/ic/qwz.c
19077
__func__, report->eid, report->credits, ep->tx_credits);
sys/dev/pci/drm/apple/afk.c
449
if (service->ops->report)
sys/dev/pci/drm/apple/afk.c
450
service->ops->report(service, le16_to_cpu(eshdr->type),
sys/dev/pci/drm/apple/afk.h
62
int (*report)(struct apple_epic_service *service, enum epic_subtype type,
sys/dev/pci/drm/apple/systemep.c
113
.report = powerlog_report,
sys/dev/pci/drm/i915/i915_perf.c
1089
u8 *report = oa_buf_base + head;
sys/dev/pci/drm/i915/i915_perf.c
1090
u32 *report32 = (void *)report;
sys/dev/pci/drm/i915/i915_perf.c
1120
ret = append_oa_sample(stream, buf, count, offset, report);
sys/dev/pci/drm/i915/i915_perf.c
468
static u64 oa_report_id(struct i915_perf_stream *stream, void *report)
sys/dev/pci/drm/i915/i915_perf.c
470
return oa_report_header_64bit(stream) ? *(u64 *)report : *(u32 *)report;
sys/dev/pci/drm/i915/i915_perf.c
473
static u64 oa_report_reason(struct i915_perf_stream *stream, void *report)
sys/dev/pci/drm/i915/i915_perf.c
475
return (oa_report_id(stream, report) >> OAREPORT_REASON_SHIFT) &
sys/dev/pci/drm/i915/i915_perf.c
481
static void oa_report_id_clear(struct i915_perf_stream *stream, u32 *report)
sys/dev/pci/drm/i915/i915_perf.c
484
*(u64 *)report = 0;
sys/dev/pci/drm/i915/i915_perf.c
486
*report = 0;
sys/dev/pci/drm/i915/i915_perf.c
489
static bool oa_report_ctx_invalid(struct i915_perf_stream *stream, void *report)
sys/dev/pci/drm/i915/i915_perf.c
491
return !(oa_report_id(stream, report) &
sys/dev/pci/drm/i915/i915_perf.c
495
static u64 oa_timestamp(struct i915_perf_stream *stream, void *report)
sys/dev/pci/drm/i915/i915_perf.c
498
*((u64 *)report + 1) :
sys/dev/pci/drm/i915/i915_perf.c
499
*((u32 *)report + 1);
sys/dev/pci/drm/i915/i915_perf.c
502
static void oa_timestamp_clear(struct i915_perf_stream *stream, u32 *report)
sys/dev/pci/drm/i915/i915_perf.c
505
*(u64 *)&report[2] = 0;
sys/dev/pci/drm/i915/i915_perf.c
507
report[1] = 0;
sys/dev/pci/drm/i915/i915_perf.c
510
static u32 oa_context_id(struct i915_perf_stream *stream, u32 *report)
sys/dev/pci/drm/i915/i915_perf.c
512
u32 ctx_id = oa_report_header_64bit(stream) ? report[4] : report[2];
sys/dev/pci/drm/i915/i915_perf.c
517
static void oa_context_id_squash(struct i915_perf_stream *stream, u32 *report)
sys/dev/pci/drm/i915/i915_perf.c
520
report[4] = INVALID_CTX_ID;
sys/dev/pci/drm/i915/i915_perf.c
522
report[2] = INVALID_CTX_ID;
sys/dev/pci/drm/i915/i915_perf.c
595
void *report = stream->oa_buffer.vaddr + tail;
sys/dev/pci/drm/i915/i915_perf.c
597
if (oa_report_id(stream, report) ||
sys/dev/pci/drm/i915/i915_perf.c
598
oa_timestamp(stream, report))
sys/dev/pci/drm/i915/i915_perf.c
677
const u8 *report)
sys/dev/pci/drm/i915/i915_perf.c
697
report_size_partial = oa_buf_end - report;
sys/dev/pci/drm/i915/i915_perf.c
700
if (copy_to_user(buf, report, report_size_partial))
sys/dev/pci/drm/i915/i915_perf.c
707
} else if (copy_to_user(buf, report, report_size)) {
sys/dev/pci/drm/i915/i915_perf.c
779
u8 *report = oa_buf_base + head;
sys/dev/pci/drm/i915/i915_perf.c
780
u32 *report32 = (void *)report;
sys/dev/pci/drm/i915/i915_perf.c
789
reason = oa_report_reason(stream, report);
sys/dev/pci/drm/i915/i915_perf.c
832
if (oa_report_ctx_invalid(stream, report) &&
sys/dev/pci/drm/i915/i915_perf.c
884
report);
sys/dev/usb/ucycom.c
373
uint8_t report[5];
sys/dev/usb/ucycom.c
439
report[0] = baud & 0xff;
sys/dev/usb/ucycom.c
440
report[1] = (baud >> 8) & 0xff;
sys/dev/usb/ucycom.c
441
report[2] = (baud >> 16) & 0xff;
sys/dev/usb/ucycom.c
442
report[3] = (baud >> 24) & 0xff;
sys/dev/usb/ucycom.c
443
report[4] = cfg;
sys/dev/usb/ucycom.c
444
rlen = MIN(sc->sc_flen, sizeof(report));
sys/dev/usb/ucycom.c
446
sc->sc_hdev.sc_report_id, report, rlen) != rlen)
sys/dev/usb/upd.c
230
struct upd_report *report;
sys/dev/usb/upd.c
264
report = &sc->sc_reports[item.report_ID];
sys/dev/usb/upd.c
265
if (SLIST_EMPTY(&report->sensors))
sys/dev/usb/upd.c
266
report->size = hid_report_size(desc,
sys/dev/usb/upd.c
268
SLIST_INSERT_HEAD(&report->sensors, sensor, rep_next);
sys/dev/usb/upd.c
311
struct upd_report *report;
sys/dev/usb/upd.c
316
report = &sc->sc_reports[repid];
sys/dev/usb/upd.c
319
if (report->pending)
sys/dev/usb/upd.c
321
report->pending = 1;
sys/dev/usb/upd.c
324
UHID_FEATURE_REPORT, repid, sc->sc_buf, report->size, sc,
sys/dev/usb/upd.c
330
report->pending = 0;
sys/dev/usb/upd.c
375
struct upd_report *report = &sc->sc_reports[repid];
sys/dev/usb/upd.c
379
if (len > 0 && report->size != len)
sys/dev/usb/upd.c
380
report->size = len;
sys/dev/usb/upd.c
383
SLIST_FOREACH(sensor, &report->sensors, rep_next)
sys/dev/usb/upd.c
386
SLIST_FOREACH(sensor, &report->sensors, rep_next)
sys/dev/usb/upd.c
389
report->pending = 0;
sys/dev/usb/uthum.c
323
uint8_t cmdbuf[32], report[256];
sys/dev/usb/uthum.c
347
flen = MIN(sc->sc_flen, sizeof(report));
sys/dev/usb/uthum.c
349
sc->sc_hdev.sc_report_id, report, flen) != flen)
sys/dev/usb/uthum.c
351
memcpy(buf, report, len);
sys/lib/libsa/blowfish.c
665
report(data, 10);
sys/lib/libsa/blowfish.c
671
report(data2, 2);
sys/lib/libsa/blowfish.c
673
report(data2, 2);
sys/scsi/scsiconf.c
865
struct scsi_report_luns_data *report;
sys/scsi/scsiconf.c
878
report = NULL;
sys/scsi/scsiconf.c
892
report = dma_alloc(sizeof(*report), PR_WAITOK);
sys/scsi/scsiconf.c
893
if (report == NULL)
sys/scsi/scsiconf.c
896
rv = scsi_report_luns(link0, REPORT_NORMAL, report,
sys/scsi/scsiconf.c
897
sizeof(*report), scsi_autoconf | SCSI_SILENT |
sys/scsi/scsiconf.c
913
nluns = _4btol(report->length) / RPL_LUNDATA_SIZE;
sys/scsi/scsiconf.c
915
if (report->luns[i].lundata[0] != 0)
sys/scsi/scsiconf.c
918
report->luns[i].lundata[RPL_LUNDATA_T0LUN];
sys/scsi/scsiconf.c
922
if (report != NULL)
sys/scsi/scsiconf.c
923
dma_free(report, sizeof(*report));
usr.bin/usbhidctl/usbhid.c
387
allocreport(struct Sreport *report, report_desc_t rd, int repindex)
usr.bin/usbhidctl/usbhid.c
394
report->size = reptsize;
usr.bin/usbhidctl/usbhid.c
396
if (report->size > 0) {
usr.bin/usbhidctl/usbhid.c
397
report->buffer = malloc(sizeof(*report->buffer));
usr.bin/usbhidctl/usbhid.c
398
if (report->buffer == NULL)
usr.bin/usbhidctl/usbhid.c
401
report->buffer = NULL;
usr.bin/usbhidctl/usbhid.c
403
report->status = srs_clean;
usr.bin/usbhidctl/usbhid.c
407
freereport(struct Sreport *report)
usr.bin/usbhidctl/usbhid.c
409
free(report->buffer);
usr.bin/usbhidctl/usbhid.c
410
report->status = srs_uninit;
usr.bin/usbhidctl/usbhid.c
414
getreport(struct Sreport *report, int hidfd, report_desc_t rd, int repindex)
usr.bin/usbhidctl/usbhid.c
416
if (report->status == srs_uninit) {
usr.bin/usbhidctl/usbhid.c
417
allocreport(report, rd, repindex);
usr.bin/usbhidctl/usbhid.c
418
if (report->size == 0)
usr.bin/usbhidctl/usbhid.c
421
report->buffer->ucr_report = reptoparam[repindex].uhid_report;
usr.bin/usbhidctl/usbhid.c
422
if (ioctl(hidfd, USB_GET_REPORT, report->buffer) == -1)
usr.bin/usbhidctl/usbhid.c
429
setreport(struct Sreport *report, int hidfd, int repindex)
usr.bin/usbhidctl/usbhid.c
431
if (report->status == srs_dirty) {
usr.bin/usbhidctl/usbhid.c
432
report->buffer->ucr_report = reptoparam[repindex].uhid_report;
usr.bin/usbhidctl/usbhid.c
434
if (ioctl(hidfd, USB_SET_REPORT, report->buffer) == -1)
usr.bin/usbhidctl/usbhid.c
438
report->status = srs_clean;
usr.sbin/inetd/inetd.c
1301
skip(char **cpp, int report)
usr.sbin/inetd/inetd.c
1308
if (report)
usr.sbin/mrouted/defs.h
160
extern void report(int which_routes, vifi_t vifi, u_int32_t dst);
usr.sbin/mrouted/route.c
931
report(which_routes, vifi,
usr.sbin/mrouted/vif.c
1168
report(ALL_ROUTES, vifi, send_tables);
usr.sbin/pppd/chat/chat.c
136
int report = 0;
usr.sbin/pppd/chat/chat.c
264
report = 1;
usr.sbin/sensorsd/sensorsd.c
181
report(last_report);
usr.sbin/sensorsd/sensorsd.c
86
void report(time_t);
usr.sbin/smtpd/bounce.c
182
be->report = xstrdup(buf);
usr.sbin/smtpd/bounce.c
189
log_debug("debug: bounce: adding report %16"PRIx64": %s", be->id, be->report);
usr.sbin/smtpd/bounce.c
486
io_xprint(s->io, evp->report);
usr.sbin/smtpd/bounce.c
50
char *report;
usr.sbin/smtpd/bounce.c
624
free(be->report);
usr.sbin/smtpd/lka_filter.c
784
} else if (filter->config->report) {
usr.sbin/smtpd/lka_filter.c
789
param, filter->config->report);
usr.sbin/smtpd/lka_filter.c
793
"smtp-in", &tv, filter->config->report);
usr.sbin/smtpd/parse.y
1593
filter_config->report = $2;
usr.sbin/smtpd/smtpd.h
1070
char *report;
usr.sbin/unbound/testcode/memstats.c
194
int report = 0;
usr.sbin/unbound/testcode/memstats.c
204
if((int)(((double)done / (double)total)*100.) > report) {
usr.sbin/unbound/testcode/memstats.c
205
report = (int)(((double)done / (double)total)*100.);
usr.sbin/unbound/testcode/memstats.c
206
fprintf(stderr, " %d%%", report);