Lines Matching defs:arg
65 int (*op)(unsigned long addr, int len, void *arg), void *arg)
84 n = (*op)(addr, len, arg);
96 int (*op)(unsigned long, int, void *), void *arg)
103 n = do_op_one_page(addr, size, is_write, op, arg);
115 n = do_op_one_page(addr, PAGE_SIZE, is_write, op, arg);
127 n = do_op_one_page(addr, remain, is_write, op, arg);
138 static int copy_chunk_from_user(unsigned long from, int len, void *arg)
140 unsigned long *to_ptr = arg, to = *to_ptr;
153 static int copy_chunk_to_user(unsigned long to, int len, void *arg)
155 unsigned long *from_ptr = arg, from = *from_ptr;
168 static int strncpy_chunk_from_user(unsigned long from, int len, void *arg)
170 char **to_ptr = arg, *to = *to_ptr;
209 static int strnlen_chunk(unsigned long str, int len, void *arg)
211 int *len_ptr = arg, n;