• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/easycap/

Lines Matching refs:pdata_urb

326 struct data_urb *pdata_urb;
357 pdata_urb = list_entry(plist_head, struct data_urb, list_head);
358 if (NULL != pdata_urb) {
359 purb = pdata_urb->purb;
361 isbuf = pdata_urb->isbuf;
446 pdata_urb = list_entry(plist_head, struct data_urb, \
448 if (NULL != pdata_urb) {
449 purb = pdata_urb->purb;
476 struct data_urb *pdata_urb;
491 pdata_urb = list_entry(plist_head, struct data_urb, \
493 if ((struct data_urb *)NULL != pdata_urb) {
494 if ((struct urb *)NULL != pdata_urb->purb) {
495 usb_kill_urb(pdata_urb->purb);
614 struct data_urb *pdata_urb;
633 pdata_urb = list_entry(plist_head, struct data_urb, list_head);
634 if (NULL == pdata_urb)
635 JOT(4, "ERROR: pdata_urb is NULL\n");
637 if ((struct urb *)NULL != pdata_urb->purb) {
638 usb_free_urb(pdata_urb->purb);
639 pdata_urb->purb = (struct urb *)NULL;
651 pdata_urb = list_entry(plist_head, struct data_urb, list_head);
652 if ((struct data_urb *)NULL != pdata_urb) {
653 kfree(pdata_urb); pdata_urb = (struct data_urb *)NULL;
719 pdata_urb = list_entry(plist_head, struct data_urb, list_head);
720 if (NULL == pdata_urb)
721 JOT(4, "ERROR: pdata_urb is NULL\n");
723 if ((struct urb *)NULL != pdata_urb->purb) {
724 usb_free_urb(pdata_urb->purb);
725 pdata_urb->purb = (struct urb *)NULL;
736 pdata_urb = list_entry(plist_head, struct data_urb, list_head);
737 if ((struct data_urb *)NULL != pdata_urb) {
738 kfree(pdata_urb); pdata_urb = (struct data_urb *)NULL;
2987 struct data_urb *pdata_urb;
3687 pdata_urb = kzalloc(sizeof(struct data_urb), GFP_KERNEL);
3688 if (NULL == pdata_urb) {
3695 pdata_urb->purb = purb;
3696 pdata_urb->isbuf = k;
3697 pdata_urb->length = 0;
3698 list_add_tail(&(pdata_urb->list_head), \
4016 pdata_urb = kzalloc(sizeof(struct data_urb), GFP_KERNEL);
4017 if (NULL == pdata_urb) {
4024 pdata_urb->purb = purb;
4025 pdata_urb->isbuf = k;
4026 pdata_urb->length = 0;
4027 list_add_tail(&(pdata_urb->list_head), \
4138 struct data_urb *pdata_urb;
4174 pdata_urb = list_entry(plist_head, \
4176 if ((struct data_urb *)NULL != pdata_urb) {
4178 pdata_urb->purb) {
4179 usb_kill_urb(pdata_urb->purb);
4196 pdata_urb = list_entry(plist_head, \
4198 if ((struct data_urb *)NULL != pdata_urb) {
4200 pdata_urb->purb) {
4201 usb_kill_urb(pdata_urb->purb);