• Home
  • Raw
  • Download

Lines Matching refs:arg

36 		struct ncp_fs_info __user *arg)  in ncp_get_fs_info()  argument
40 if (copy_from_user(&info, arg, sizeof(info))) in ncp_get_fs_info()
54 if (copy_to_user(arg, &info, sizeof(info))) in ncp_get_fs_info()
61 struct ncp_fs_info_v2 __user * arg) in ncp_get_fs_info_v2() argument
65 if (copy_from_user(&info2, arg, sizeof(info2))) in ncp_get_fs_info_v2()
79 if (copy_to_user(arg, &info2, sizeof(info2))) in ncp_get_fs_info_v2()
127 struct compat_ncp_fs_info_v2 __user * arg) in ncp_get_compat_fs_info_v2() argument
131 if (copy_from_user(&info2, arg, sizeof(info2))) in ncp_get_compat_fs_info_v2()
145 if (copy_to_user(arg, &info2, sizeof(info2))) in ncp_get_compat_fs_info_v2()
160 ncp_set_charsets(struct ncp_server* server, struct ncp_nls_ioctl __user *arg) in ncp_set_charsets() argument
170 if (copy_from_user(&user, arg, sizeof(user))) in ncp_set_charsets()
225 ncp_get_charsets(struct ncp_server* server, struct ncp_nls_ioctl __user *arg) in ncp_get_charsets() argument
251 if (copy_to_user(arg, &user, sizeof(user))) in ncp_get_charsets()
257 static long __ncp_ioctl(struct inode *inode, unsigned int cmd, unsigned long arg) in __ncp_ioctl() argument
263 void __user *argp = (void __user *)arg; in __ncp_ioctl()
812 long ncp_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in ncp_ioctl() argument
904 ret = __ncp_ioctl(inode, cmd, arg); in ncp_ioctl()
913 long ncp_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ncp_compat_ioctl() argument
917 arg = (unsigned long) compat_ptr(arg); in ncp_compat_ioctl()
918 ret = ncp_ioctl(file, cmd, arg); in ncp_compat_ioctl()