Searched refs:report (Results 1 - 25 of 146) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/usbhid/
H A Dhid-zpff.c34 struct hid_report *report; member in struct:zpff_device
57 zpff->report->field[2]->value[0] = left;
58 zpff->report->field[3]->value[0] = right;
60 usbhid_submit_report(hid, zpff->report, USB_DIR_OUT);
68 struct hid_report *report; local
77 printk(KERN_ERR "hid-zpff: no output report found\n");
81 report = list_entry(report_list->next, struct hid_report, list);
83 if (report->maxfield < 4) {
84 printk(KERN_ERR "hid-zpff: not enough fields in report\n");
100 zpff->report
[all...]
H A Dhid-plff.c34 struct hid_report *report; member in struct:plff_device
51 plff->report->field[0]->value[2] = left;
52 plff->report->field[0]->value[3] = right;
54 usbhid_submit_report(hid, plff->report, USB_DIR_OUT);
62 struct hid_report *report; local
88 printk(KERN_ERR "hid-plff: required output report is missing\n");
92 report = list_entry(report_ptr, struct hid_report, list);
93 if (report->maxfield < 1) {
94 printk(KERN_ERR "hid-plff: no fields in the report\n");
98 if (report
[all...]
H A Dhid-lgff.c65 struct hid_report *report = list_entry(report_list->next, struct hid_report, list); local
77 report->field[0]->value[0] = 0x51;
78 report->field[0]->value[1] = 0x08;
79 report->field[0]->value[2] = x;
80 report->field[0]->value[3] = y;
82 usbhid_submit_report(hid, report, USB_DIR_OUT);
92 report->field[0]->value[0] = 0x42;
93 report->field[0]->value[1] = 0x00;
94 report->field[0]->value[2] = left;
95 report
108 struct hid_report *report; local
[all...]
H A Dhid-tmff.c43 struct hid_report *report; member in struct:tmff_device
74 usbhid_submit_report(hid, tmff->report, USB_DIR_OUT);
91 /* Find the report to use */
93 struct hid_report *report = (struct hid_report *)pos; local
96 for (fieldnum = 0; fieldnum < report->maxfield; ++fieldnum) {
97 struct hid_field *field = report->field[fieldnum];
114 if (tmff->report && tmff->report != report) {
115 warn("ignoring THRUSTMASTER_USAGE_RUMBLE_LR in other report");
[all...]
H A Dhiddev.c70 * Find a report, given the report's type and ID. The ID can be specified
71 * indirectly by REPORT_ID_FIRST (which returns the first report of the given
72 * type) or by (REPORT_ID_NEXT | old_id), which returns the next report of the
81 struct hid_report *report; local
100 report = list_entry(list, struct hid_report, list);
101 rinfo->report_id = report->id;
105 report = report_enum->report_id_hash[rid];
106 if (!report)
109 list = report
132 struct hid_report *report; local
206 hiddev_report_event(struct hid_device *hid, struct hid_report *report) argument
407 struct hid_report *report; local
[all...]
H A Dhid-core.c234 struct hid_report *report; local
237 report = usbhid->out[usbhid->outtail];
239 hid_output_report(report, usbhid->outbuf);
240 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
255 struct hid_report *report; local
260 report = usbhid->ctrl[usbhid->ctrltail].report;
263 len = ((report->size - 1) >> 3) + 1 + (report
398 usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir) argument
484 hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle) argument
529 struct hid_report *report; local
560 struct hid_report *report; local
597 struct hid_report *report; local
[all...]
H A Dhid-pidff.c60 the only field in that report */
241 * Send envelope report to the device
281 * Send constant force report to the device
305 * Send set effect report to the device
344 * Send periodic effect report to the device
431 * Send ramp force report to the device
758 * Find fields from a report and fill a pidff_usage
761 struct hid_report *report, int count, int strict)
767 for (i = 0; i < report->maxfield; i++) {
768 if (report
760 pidff_find_fields(struct pidff_usage *usage, const u8 *table, struct hid_report *report, int count, int strict) argument
817 struct hid_report *report; local
872 pidff_find_special_field(struct hid_report *report, int usage, int enforce_min) argument
[all...]
H A Dusbhid.h39 void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dcipher-proto.h26 /* Definition of a function used to report selftest failures.
39 (int algo, int extended, selftest_report_func_t report);
114 selftest_report_func_t report);
116 selftest_report_func_t report);
118 selftest_report_func_t report);
120 selftest_report_func_t report);
122 gcry_error_t _gcry_random_selftest (selftest_report_func_t report);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/
H A Dhid-core.c44 * Register a new report for a device.
50 struct hid_report *report; local
55 if (!(report = kzalloc(sizeof(struct hid_report), GFP_KERNEL)))
61 report->id = id;
62 report->type = type;
63 report->size = 0;
64 report->device = device;
65 report_enum->report_id_hash[id] = report;
67 list_add_tail(&report->list, &report_enum->report_list);
69 return report;
76 hid_register_field(struct hid_report *report, unsigned usages, unsigned values) argument
198 struct hid_report *report; local
515 hid_free_report(struct hid_report *report) argument
536 struct hid_report *report = report_enum->report_id_hash[j]; local
749 extract(__u8 *report, unsigned offset, unsigned n) argument
770 implement(__u8 *report, unsigned offset, unsigned n, __u32 value) argument
893 hid_output_report(struct hid_report *report, __u8 *data) argument
936 struct hid_report *report; local
[all...]
H A Dhid-input.c261 struct hid_report *report; local
265 list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
266 for (i = 0; i < report->maxfield; i++) {
267 for ( j = 0; j < report->field[i]->maxusage; j++) {
268 usage = report->field[i]->usage + j;
743 if (field->report->type == HID_OUTPUT_REPORT) {
917 void hidinput_report_event(struct hid_device *hid, struct hid_report *report) argument
928 struct hid_report *report; local
931 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
932 for (i = 0; i < report
965 struct hid_report *report; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Dhmac-tests.c96 selftests_sha1 (int extended, selftest_report_func_t report) argument
153 if (report)
154 report ("hmac", GCRY_MD_SHA1, what, errtxt);
161 selftests_sha224 (int extended, selftest_report_func_t report) argument
268 if (report)
269 report ("hmac", GCRY_MD_SHA224, what, errtxt);
275 selftests_sha256 (int extended, selftest_report_func_t report) argument
410 if (report)
411 report ("hmac", GCRY_MD_SHA256, what, errtxt);
417 selftests_sha384 (int extended, selftest_report_func_t report) argument
543 selftests_sha512(int extended, selftest_report_func_t report) argument
683 run_selftests(int algo, int extended, selftest_report_func_t report) argument
717 _gcry_hmac_selftest(int algo, int extended, selftest_report_func_t report) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libogg-1.1.4/src/
H A Dbitwise.c506 void report(char *in){ function
520 if(bytes!=compsize)report("wrong number of bytes!\n");
523 report("wrote incorrect value!\n");
529 report("out of data!\n");
531 report("looked at incorrect value!\n");
534 report("looked at single bit incorrect value!\n");
537 report("read incorrect single bit value!\n");
540 report("read incorrect value!\n");
543 if(oggpack_bytes(&r)!=bytes)report("leftover bytes after read!\n");
555 if(bytes!=compsize)report("wron
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dschematron.c81 * A Schematrons test, either an assert or a report
91 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronTest
108 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronRule
298 * @report: the associated report string
308 xmlNodePtr node, xmlChar *test, xmlChar *report)
339 ret->report = report;
305 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
389 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, xmlSchematronPatternPtr pat, xmlNodePtr node, xmlChar *context, xmlChar *report) argument
855 xmlChar *report; local
1383 const xmlChar *report = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/saa7134/
H A Dsaa7134-core.c508 unsigned long report, unsigned long status)
513 dev->name,loop,jiffies,report,status);
515 if (!(report & (1 << i)))
519 if (report & SAA7134_IRQ_REPORT_DONE_RA0) {
532 unsigned long report,status; local
536 report = saa_readl(SAA7134_IRQ_REPORT);
538 if (0 == report) {
545 /* If dmasound support is active and we get a sound report, exit
548 if ((report & SAA7134_IRQ_REPORT_DONE_RA3) &&
558 saa_writel(SAA7134_IRQ_REPORT,report);
507 print_irqstatus(struct saa7134_dev *dev, int loop, unsigned long report, unsigned long status) argument
1070 u32 report = saa_readl(SAA7134_IRQ_REPORT); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/IGMP-PROXY/src/
H A Digmprt.c79 /* validation du report provenant d'un membre d'un groupe*/
616 * Process a v1/v2 membership report
623 igmpr_t* report,
630 /* Ignore a report for a non-multicast address */
631 if (! IN_MULTICAST(ntohl(report->igmpr_group.s_addr)))
634 if(!igmp_interface_group_lookup(ifp,report->igmpr_group))
636 send_membership_report_v12(router,report->igmpr_group,version);
640 if ((gp = igmp_interface_group_add(router,ifp, report->igmpr_group)) == NULL)
646 /* Consider this to be a v3 is_ex{} report */
680 * Process a v3 membership report
619 igmp_interface_membership_report_v12( igmp_router_t* router, igmp_interface_t* ifp, struct in_addr src, igmpr_t* report, int len, int version) argument
684 igmp_interface_membership_report_v3( igmp_router_t* router, igmp_interface_t* ifp, struct in_addr src, igmp_report_t* report, int len) argument
1034 igmp_report_t *report; local
1598 igmp_interface_leave_group_v2( igmp_router_t* router, igmp_interface_t* ifp, struct in_addr src, igmpr_t* report, int len) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/autoconf-lib-link/tests/
H A DMakefile313 report=""; \
315 report="Please report to $(PACKAGE_BUGREPORT)"; \
316 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
317 dashes="$$report"; \
323 test -z "$$report" || echo "$$report"; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/tc/
H A Dlk201.c124 char *report = "lk201: keyboard attached, "; local
128 printk(KERN_INFO "%sself-test OK\n", report);
137 report, id[3]);
140 printk(KERN_ERR "%sself-test failure\n", report);
144 report, id[2]);
170 printk(KERN_WARNING "lk201: ... please report to "
340 /* We got the ID; report it and start operation. */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dschematron.c81 * A Schematrons test, either an assert or a report
91 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronTest
108 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronRule
293 * @report: the associated report string
303 xmlNodePtr node, xmlChar *test, xmlChar *report)
334 ret->report = report;
300 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
384 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, xmlSchematronPatternPtr pat, xmlNodePtr node, xmlChar *context, xmlChar *report) argument
848 xmlChar *report; local
1371 const xmlChar *report = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dschematron.c81 * A Schematrons test, either an assert or a report
91 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronTest
108 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronRule
293 * @report: the associated report string
303 xmlNodePtr node, xmlChar *test, xmlChar *report)
334 ret->report = report;
300 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
384 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, xmlSchematronPatternPtr pat, xmlNodePtr node, xmlChar *context, xmlChar *report) argument
848 xmlChar *report; local
1371 const xmlChar *report = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/tablet/
H A Dgtco.c7 TO CHECK: Is pressure done right on report 5?
83 /* Max size of a single report */
198 * The main purpose of this is to use the HID report desc to figure
203 static void parse_hid_report_descriptor(struct gtco *device, char * report, argument
234 /* Walk this report and pull out the info we need */
236 prefix = report[i];
245 data = report[i];
248 data16 = le16_to_cpu(get_unaligned((__le16 *)&report[i]));
252 data32 = le32_to_cpu(get_unaligned((__le32 *)&report[i]));
270 * information from a report
831 char *report = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test_micro/
H A Dreport3 # $Id: report,v 1.7 2008/02/07 18:11:34 bostic Exp $
53 # the BDB releases for which a report is created.
57 awk -f $h/report.awk |
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/random/
H A Drandom.c279 _gcry_random_selftest (selftest_report_func_t report)
282 return _gcry_rngfips_selftest (report);
278 _gcry_random_selftest(selftest_report_func_t report) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/
H A Dzconf.hash.c23 #error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>."
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/
H A Dzconf.hash.c23 #error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>."

Completed in 213 milliseconds

123456