Searched refs:descriptor (Results 1 - 25 of 134) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/core/
H A Dotg_whitelist.h55 if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a &&
56 le16_to_cpu(dev->descriptor.idProduct) == 0xbadd))
64 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
68 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
74 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
78 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
82 (id->bDeviceClass != dev->descriptor.bDeviceClass))
86 (id->bDeviceSubClass!= dev->descriptor.bDeviceSubClass))
90 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
101 le16_to_cpu(dev->descriptor
[all...]
H A Dhub.c61 struct usb_hub_descriptor *descriptor; /* class descriptor */ member in struct:usb_hub
222 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
271 cursor %= hub->descriptor->bNbrPorts;
477 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
479 le16_to_cpu(hub->descriptor->wHubCharacteristics);
492 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
621 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
622 if (!hub->descriptor) {
2941 struct usb_device_descriptor descriptor = udev->descriptor; local
[all...]
H A Dgeneric.c51 num_configs = udev->descriptor.bNumConfigurations;
82 * Some hubs have errors in their descriptor, claiming
114 else if (udev->descriptor.bDeviceClass !=
H A Dsysfs.c147 bcdUSB = le16_to_cpu(udev->descriptor.bcdUSB);
324 le16_to_cpu(udev->descriptor.field)); \
340 return sprintf(buf, format_string, udev->descriptor.field); \
478 le16_to_cpu(udev->descriptor.idVendor),
479 le16_to_cpu(udev->descriptor.idProduct),
480 le16_to_cpu(udev->descriptor.bcdDevice),
481 udev->descriptor.bDeviceClass,
482 udev->descriptor.bDeviceSubClass,
483 udev->descriptor.bDeviceProtocol,
H A Ddriver.c372 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
376 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
382 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
386 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
390 (id->bDeviceClass != dev->descriptor.bDeviceClass))
394 (id->bDeviceSubClass!= dev->descriptor.bDeviceSubClass))
398 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
424 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
465 * in the device or interface descriptor, or else the device_id
484 * The most specific match specifiers use device descriptor
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/usb/
H A Dinput.h20 id->vendor = le16_to_cpu(dev->descriptor.idVendor);
21 id->product = le16_to_cpu(dev->descriptor.idProduct);
22 id->version = le16_to_cpu(dev->descriptor.bcdDevice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jbd2/
H A Drevoke.c504 struct journal_head *descriptor; local
510 descriptor = NULL;
525 &descriptor, &offset,
532 if (descriptor)
533 flush_descriptor(journal, descriptor, offset);
538 * Write out one revoke record. We need to create a new descriptor
548 struct journal_head *descriptor; local
559 descriptor = *descriptorp;
562 /* Make sure we have a descriptor with space left for the record */
563 if (descriptor) {
608 flush_descriptor(journal_t *journal, struct journal_head *descriptor, int offset) argument
[all...]
H A Dcommit.c105 struct journal_head *descriptor; local
113 descriptor = jbd2_journal_get_descriptor_buffer(journal);
114 if (!descriptor)
117 bh = jh2bh(descriptor);
127 JBUFFER_TRACE(descriptor, "write commit block");
157 jbd2_journal_put_journal_head(descriptor);
294 struct journal_head *jh, *new_jh, *descriptor; local
501 descriptor = NULL;
516 * any descriptor buffers which may have been
524 /* Make sure we have a descriptor bloc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus_journal/
H A Drevoke.c500 struct hfsplus_jbd_head *descriptor; local
506 descriptor = NULL;
521 &descriptor, &offset,
528 if (descriptor)
529 flush_descriptor(journal, descriptor, offset);
534 * Write out one revoke record. We need to create a new descriptor
544 struct hfsplus_jbd_head *descriptor; local
555 descriptor = *descriptorp;
558 /* Make sure we have a descriptor with space left for the record */
559 if (descriptor) {
597 flush_descriptor(hfsplus_jbd_t *journal, struct hfsplus_jbd_head *descriptor, int offset) argument
[all...]
H A Dcommit.c107 struct hfsplus_jbd_head *descriptor; local
120 descriptor = hfsplus_jbd_get_descriptor_buffer(journal);
121 if (!descriptor)
124 bh = hfsplus_jh2bh(descriptor);
134 HFSPLUS_JBUFFER_TRACE(descriptor, "write commit block");
164 hfsplus_jbd_put_journal_head(descriptor);
195 struct hfsplus_jbd_head *jh, *new_jh, *descriptor; local
472 descriptor = NULL;
491 * any descriptor buffers which may have been
499 /* Make sure we have a descriptor bloc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jbd/
H A Drevoke.c503 struct journal_head *descriptor; local
509 descriptor = NULL;
524 &descriptor, &offset,
531 if (descriptor)
532 flush_descriptor(journal, descriptor, offset);
537 * Write out one revoke record. We need to create a new descriptor
547 struct journal_head *descriptor; local
558 descriptor = *descriptorp;
561 /* Make sure we have a descriptor with space left for the record */
562 if (descriptor) {
599 flush_descriptor(journal_t *journal, struct journal_head *descriptor, int offset) argument
[all...]
H A Dcommit.c105 struct journal_head *descriptor; local
113 descriptor = journal_get_descriptor_buffer(journal);
114 if (!descriptor)
117 bh = jh2bh(descriptor);
127 JBUFFER_TRACE(descriptor, "write commit block");
157 journal_put_journal_head(descriptor);
286 struct journal_head *jh, *new_jh, *descriptor; local
492 descriptor = NULL;
507 * any descriptor buffers which may have been
515 /* Make sure we have a descriptor bloc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dmxfdec.c117 MXFDescriptor *descriptor; /* only one */ member in struct:__anon704
520 static void mxf_read_pixel_layout(ByteIOContext *pb, MXFDescriptor *descriptor) argument
529 descriptor->bits_per_sample += get_byte(pb);
532 descriptor->bits_per_sample += get_byte(pb);
535 descriptor->bits_per_sample += get_byte(pb);
543 static int mxf_read_generic_descriptor(MXFDescriptor *descriptor, ByteIOContext *pb, int tag, int size, UID uid) argument
547 descriptor->sub_descriptors_count = get_be32(pb);
548 if (descriptor->sub_descriptors_count >= UINT_MAX / sizeof(UID))
550 descriptor->sub_descriptors_refs = av_malloc(descriptor
677 MXFDescriptor *descriptor = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-usb/
H A Dcxusb.h9 #define deb_i2c(args...) if (d->udev->descriptor.idVendor == USB_VID_MEDION) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/usbhid/
H A Dhid-ff.c81 int vendor = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idVendor);
82 int product = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idProduct);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/math-emu/
H A Dget_address.c155 struct desc_struct descriptor; local
181 descriptor = LDT_DESCRIPTOR(PM_REG_(segment));
182 base_address = SEG_BASE_ADDR(descriptor);
185 + (SEG_LIMIT(descriptor)+1) * SEG_GRANULARITY(descriptor) - 1;
188 if ( SEG_EXPAND_DOWN(descriptor) )
190 if ( SEG_G_BIT(descriptor) )
207 if ( SEG_EXECUTE_ONLY(descriptor) ||
208 (!SEG_WRITE_PERM(descriptor) && (FPU_modrm & FPU_WRITE_BIT)) )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/firewire/
H A Dfw-cdev.c558 struct descriptor { struct
567 struct descriptor *descriptor = local
568 container_of(resource, struct descriptor, resource);
570 fw_core_remove_descriptor(&descriptor->d);
571 kfree(descriptor);
577 struct descriptor *descriptor; local
583 descriptor =
584 kmalloc(sizeof(*descriptor)
[all...]
H A Dfw-ohci.c51 struct descriptor { struct
80 struct descriptor descriptor; member in struct:ar_buffer
97 struct descriptor *d,
98 struct descriptor *last);
103 struct descriptor *buffer;
106 struct descriptor *head_descriptor;
107 struct descriptor *tail_descriptor;
108 struct descriptor *tail_descriptor_last;
109 struct descriptor *prev_descripto
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/
H A Dcharcnv.c317 atalk_iconv_t descriptor; local
331 descriptor = conv_handles[from][to];
333 if (descriptor == (atalk_iconv_t)-1 || descriptor == (atalk_iconv_t)0) {
339 retval = atalk_iconv(descriptor, &inbuf, &i_len, &outbuf, &o_len);
421 atalk_iconv_t descriptor; local
430 descriptor = conv_handles[from][to];
432 if (descriptor == (atalk_iconv_t)-1 || descriptor == (atalk_iconv_t)0) {
452 retval = atalk_iconv(descriptor,
778 atalk_iconv_t descriptor; local
890 atalk_iconv_t descriptor; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/
H A Dcharcnv.c317 atalk_iconv_t descriptor; local
331 descriptor = conv_handles[from][to];
333 if (descriptor == (atalk_iconv_t)-1 || descriptor == (atalk_iconv_t)0) {
339 retval = atalk_iconv(descriptor, &inbuf, &i_len, &outbuf, &o_len);
421 atalk_iconv_t descriptor; local
430 descriptor = conv_handles[from][to];
432 if (descriptor == (atalk_iconv_t)-1 || descriptor == (atalk_iconv_t)0) {
452 retval = atalk_iconv(descriptor,
778 atalk_iconv_t descriptor; local
890 atalk_iconv_t descriptor; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/block/
H A Ddasd_eckd.h224 __u8 descriptor; member in struct:dasd_eckd_confdata::__anon6227
246 __u8 descriptor; member in struct:dasd_eckd_confdata::__anon6229::__anon6230
273 __u8 descriptor; member in struct:dasd_eckd_confdata::__anon6233
292 __u8 descriptor; member in struct:dasd_eckd_confdata::__anon6235
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/usb/caiaq/
H A Dcaiaq-device.c290 dev->chip.usb_id = USB_ID(usb_dev->descriptor.idVendor,
291 usb_dev->descriptor.idProduct);
336 usb_string(usb_dev, usb_dev->descriptor.iManufacturer,
339 usb_string(usb_dev, usb_dev->descriptor.iProduct,
342 usb_string(usb_dev, usb_dev->descriptor.iSerialNumber,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/usb/usx2y/
H A Dusbusx2y.c360 le16_to_cpu(device->descriptor.idVendor),
361 le16_to_cpu(device->descriptor.idProduct),
374 if (le16_to_cpu(device->descriptor.idVendor) != 0x1604 ||
375 (le16_to_cpu(device->descriptor.idProduct) != USB_ID_US122 &&
376 le16_to_cpu(device->descriptor.idProduct) != USB_ID_US224 &&
377 le16_to_cpu(device->descriptor.idProduct) != USB_ID_US428) ||
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hisax/
H A Dst5481_init.c68 le16_to_cpu(dev->descriptor.idVendor),
69 le16_to_cpu(dev->descriptor.idProduct),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dcallback_srm.S26 ldq $27,0($2) # DISPATCH procedure descriptor (VMS call std)
44 ldq $27,16($2) # VA of FIXUP procedure descriptor

Completed in 124 milliseconds

123456