Lines Matching refs:src
45 const struct usb_descriptor_header **src) in usb_descriptor_fillbuf() argument
49 if (!src) in usb_descriptor_fillbuf()
53 for (; NULL != *src; src++) { in usb_descriptor_fillbuf()
54 unsigned len = (*src)->bLength; in usb_descriptor_fillbuf()
58 memcpy(dest, *src, len); in usb_descriptor_fillbuf()
131 usb_copy_descriptors(struct usb_descriptor_header **src) in usb_copy_descriptors() argument
140 for (bytes = 0, n_desc = 0, tmp = src; *tmp; tmp++, n_desc++) in usb_copy_descriptors()
155 while (*src) { in usb_copy_descriptors()
156 memcpy(mem, *src, (*src)->bLength); in usb_copy_descriptors()
159 mem += (*src)->bLength; in usb_copy_descriptors()
160 src++; in usb_copy_descriptors()
179 struct usb_descriptor_header **src, in usb_find_endpoint() argument
184 while (*src) { in usb_find_endpoint()
185 if (*src == (void *) match) in usb_find_endpoint()
187 src++; in usb_find_endpoint()