Lines Matching full:copied
147 * make sure that the data is copied before
191 unsigned int *copied)
219 *copied = len - ret * esize;
220 /* return the number of elements which are not copied */
225 unsigned long len, unsigned int *copied)
239 ret = kfifo_copy_from_user(fifo, from, len, fifo->in, copied);
251 unsigned int len, unsigned int off, unsigned int *copied)
275 * make sure that the data is copied before
279 *copied = len - ret * esize;
280 /* return the number of elements which are not copied */
285 unsigned long len, unsigned int *copied)
298 ret = kfifo_copy_to_user(fifo, to, len, fifo->out, copied);
509 unsigned long len, unsigned int *copied, size_t recsize)
516 *copied = 0;
522 ret = kfifo_copy_from_user(fifo, from, len, fifo->in + recsize, copied);
524 *copied = 0;
533 unsigned long len, unsigned int *copied, size_t recsize)
539 *copied = 0;
547 ret = kfifo_copy_to_user(fifo, to, len, fifo->out + recsize, copied);
549 *copied = 0;