Lines Matching defs:data

100 /* size in bytes of DMA data buffers */
125 char *virt_addr; /* virtual address of data buffer */
149 * Device instance data structure
617 static void trace_block(SLMP_INFO *info, const char* data, int count, int xmit);
694 * ldisc_receive_buf - pass receive data to line discipline
698 const __u8 *data, char *flags, int count)
706 ld->ops->receive_buf(tty, data, flags, count);
797 /* Called when port is closed. Wait for remaining data to be
898 /* Send a block of data
903 * buf pointer to buffer containing send data
904 * count size of send data in bytes
933 /* send accumulated data from send_char() calls */
934 /* as frame and wait before accepting more data. */
1166 /* copy data from circular tx_buf to */
1177 /* Discard all data in the send buffer
1243 * tty pointer to tty instance data
1439 /* Signal remote device to throttle send data (our receive data)
1464 /* Signal remote device to stop throttling send data (our receive data)
1588 /* copy data to device buffers */
1590 tx_load_dma_buffer(info, skb->data, skb->len);
1731 ifr->ifr_settings.size = size; /* data size wanted */
1840 * @buf: pointer to buffer contianing frame data
1841 * @size: count of data bytes in buf
2133 * handle async rx data interrupts
2285 * handle async tx data interrupts
2779 * FIFO (32 bytes) at specified data rate
2784 /* if port data rate is set to 460800 or less then
2786 * current data rate.
3359 /* calculate total number of data buffers (SCABUFSIZE) possible
3663 /* Add the specified device instance data structure to the
3727 printk("%s(%d) Error can't allocate device instance data for adapter %d, port %d\n",
3745 /* Copy configuration info to device instance data */
3777 * bits to the device instance data as we write the value
4049 * data_rate data rate of clock in bits per second
4050 * A data rate of 0 disables the AUX clock.
4107 write_reg(info, IE0, info->ie0_value); /* disable Rx data interrupts */
4156 /* set buffer length (shared by all rx dma data buffers) */
4264 write_reg(info, IE0, info->ie0_value); /* disable tx data interrupts */
4271 * there is no more data to load.
4277 /* do nothing is now tx data available and no XON/XOFF pending */
4282 /* load the Transmit FIFO until FIFOs full or all data sent */
4287 /* there is more data in transmit buffer */
4775 * makes all buffers free and discards any data in buffers.
4784 * info pointer to device instance data
4876 /* frame status is byte stored after frame data
4889 /* Note:CRC is not save to data buffer */
4988 /* load the transmit DMA buffer with data
5356 /* Test data lines with test pattern at one location. */
5384 /* Load data into PCI adapter shared memory.
5392 * at high speeds when copying large data blocks to the shared memory.
5418 static void trace_block(SLMP_INFO *info,const char* data, int count, int xmit)
5423 printk("%s tx data:\n",info->device_name);
5425 printk("%s rx data:\n",info->device_name);
5434 printk("%02X ",(unsigned char)data[i]);
5438 if (data[i]>=040 && data[i]<=0176)
5439 printk("%c",data[i]);
5445 data += linecount;