Lines Matching defs:count
49 const unsigned char *buf, int count);
260 const unsigned char *buf, int count)
269 if (count == 0)
272 count = min(count, port->bulk_out_size - 1);
277 port->tx_bytes += count;
293 memcpy(urb->transfer_buffer + 1, buf, count);
295 urb->transfer_buffer_length = count + 1;
304 port->tx_bytes -= count;
310 return count;
346 unsigned int count = 0;
352 count = port->bulk_out_size - 1;
354 return count;