Lines Matching refs:data
428 * this is the callback function for when we have received data on the
437 unsigned char *data;
446 data = urb->transfer_buffer;
447 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
451 tty_insert_flip_string(tport, data, urb->actual_length);
472 * serial data on the bulk out endpoint.
629 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
729 * bytes of data we currently have outstanding in the port (data that has
794 unsigned char data;
797 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
799 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
802 mos7840_port->shadowLCR = data;
812 * bytes of data we can accept for a specific port.
838 * this function is called by the tty driver when data should be written to
845 const unsigned char *data, int count)
856 const unsigned char *current_position = data;
889 /* fill urb with data and submit */
933 * this function is called by the tty driver when it wants to stop the data
963 * the data being read from the port (called after mos7840_throttle is
1416 __u16 data = 0, mcr_data = 0;
1444 data = *buf;
1447 if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)