Lines Matching defs:count
49 const unsigned char *buf, int count);
259 const unsigned char *buf, int count)
268 if (count == 0)
271 count = min(count, port->bulk_out_size - 1);
276 port->tx_bytes += count;
292 memcpy(urb->transfer_buffer + 1, buf, count);
294 urb->transfer_buffer_length = count + 1;
303 port->tx_bytes -= count;
309 return count;
345 int count = 0;
351 count = port->bulk_out_size - 1;
353 return count;