Lines Matching defs:arg
64 int (*op)(unsigned long addr, int len, void *arg), void *arg)
83 n = (*op)(addr, len, arg);
95 int (*op)(unsigned long, int, void *), void *arg)
102 n = do_op_one_page(addr, size, is_write, op, arg);
114 n = do_op_one_page(addr, PAGE_SIZE, is_write, op, arg);
126 n = do_op_one_page(addr, remain, is_write, op, arg);
137 static int copy_chunk_from_user(unsigned long from, int len, void *arg)
139 unsigned long *to_ptr = arg, to = *to_ptr;
157 static int copy_chunk_to_user(unsigned long to, int len, void *arg)
159 unsigned long *from_ptr = arg, from = *from_ptr;
177 static int strncpy_chunk_from_user(unsigned long from, int len, void *arg)
179 char **to_ptr = arg, *to = *to_ptr;
226 static int strnlen_chunk(unsigned long str, int len, void *arg)
228 int *len_ptr = arg, n;