Lines Matching defs:copied
146 * make sure that the data is copied before
177 unsigned int *copied)
205 *copied = len - ret * esize;
206 /* return the number of elements which are not copied */
211 unsigned long len, unsigned int *copied)
225 ret = kfifo_copy_from_user(fifo, from, len, fifo->in, copied);
237 unsigned int len, unsigned int off, unsigned int *copied)
261 * make sure that the data is copied before
265 *copied = len - ret * esize;
266 /* return the number of elements which are not copied */
271 unsigned long len, unsigned int *copied)
284 ret = kfifo_copy_to_user(fifo, to, len, fifo->out, copied);
500 unsigned long len, unsigned int *copied, size_t recsize)
507 *copied = 0;
513 ret = kfifo_copy_from_user(fifo, from, len, fifo->in + recsize, copied);
515 *copied = 0;
524 unsigned long len, unsigned int *copied, size_t recsize)
530 *copied = 0;
538 ret = kfifo_copy_to_user(fifo, to, len, fifo->out + recsize, copied);
540 *copied = 0;