Searched refs:interrupt_out_buffer (Results  1 – 7 of 7) sorted by relevance
| /linux-4.4.14/drivers/usb/misc/ | 
| D | ldusb.c | 175 	char*			interrupt_out_buffer;  member 214 	kfree(dev->interrupt_out_buffer);  in ld_usb_delete() 568 	if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {  in ld_usb_write() 580 					 dev->interrupt_out_buffer,  in ld_usb_write() 595 			 dev->interrupt_out_buffer,  in ld_usb_write() 723 …dev->interrupt_out_buffer = kmalloc(write_buffer_size*dev->interrupt_out_endpoint_size, GFP_KERNEL…  in ld_usb_probe() 724 	if (!dev->interrupt_out_buffer) {  in ld_usb_probe()
  | 
| D | legousbtower.c | 218 	char*			interrupt_out_buffer;  member 306 	kfree (dev->interrupt_out_buffer);  in tower_delete() 679 	if (copy_from_user (dev->interrupt_out_buffer, buffer, bytes_to_write)) {  in tower_write() 688 			 dev->interrupt_out_buffer,  in tower_write() 846 	dev->interrupt_out_buffer = NULL;  in tower_probe() 888 	dev->interrupt_out_buffer = kmalloc (write_buffer_size, GFP_KERNEL);  in tower_probe() 889 	if (!dev->interrupt_out_buffer) {  in tower_probe()
  | 
| D | adutux.c | 99 	char		*interrupt_out_buffer;  member 153 	kfree(dev->interrupt_out_buffer);  in adu_delete() 586 			if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write) != 0) {  in adu_write() 596 				dev->interrupt_out_buffer,  in adu_write() 751 	dev->interrupt_out_buffer = kmalloc(out_end_size, GFP_KERNEL);  in adu_probe() 752 	if (!dev->interrupt_out_buffer) {  in adu_probe()
  | 
| /linux-4.4.14/drivers/usb/serial/ | 
| D | cypress_m8.c | 722 		port->interrupt_out_buffer[0] = priv->line_control;  in cypress_send() 727 		port->interrupt_out_buffer[0] = priv->line_control;  in cypress_send() 743 					&port->interrupt_out_buffer[offset],  in cypress_send() 752 		port->interrupt_out_buffer[1] = count;  in cypress_send() 755 		port->interrupt_out_buffer[0] |= count;  in cypress_send() 776 		port->interrupt_out_buffer, port->interrupt_out_size,  in cypress_send()
  | 
| D | usb-serial.c | 594 	kfree(port->interrupt_out_buffer);  in usb_serial_port_release() 1022 			port->interrupt_out_buffer = kmalloc(buffer_size,  in usb_serial_probe() 1024 			if (!port->interrupt_out_buffer)  in usb_serial_probe() 1029 				port->interrupt_out_buffer, buffer_size,  in usb_serial_probe()
  | 
| D | kobil_sct.c | 333 			memcpy(port->interrupt_out_buffer,  in kobil_write()
  | 
| /linux-4.4.14/include/linux/usb/ | 
| D | serial.h | 87 	unsigned char		*interrupt_out_buffer;  member
  |