Lines Matching refs:__user

122 			     struct oldabi_stat64 __user *statbuf)
148 asmlinkage long sys_oabi_stat64(const char __user * filename,
149 struct oldabi_stat64 __user * statbuf)
158 asmlinkage long sys_oabi_lstat64(const char __user * filename,
159 struct oldabi_stat64 __user * statbuf)
169 struct oldabi_stat64 __user * statbuf)
179 const char __user *filename,
180 struct oldabi_stat64 __user *statbuf,
200 static int get_oabi_flock(struct flock64 *kernel, struct oabi_flock64 __user *arg)
204 if (copy_from_user(&user, (struct oabi_flock64 __user *)arg,
217 static int put_oabi_flock(struct flock64 *kernel, struct oabi_flock64 __user *arg)
227 if (copy_to_user((struct oabi_flock64 __user *)arg,
237 void __user *argp = (void __user *)arg;
286 struct oabi_epoll_event __user *event)
302 struct oabi_epoll_event __user *event)
308 struct epoll_event __user *
310 struct epoll_event __user *uevent)
313 struct oabi_epoll_event __user *oevent = (void __user *)uevent;
319 return (void __user *)(oevent+1);
340 struct oabi_sembuf __user *tsops,
342 const struct old_timespec32 __user *timeout)
385 asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
392 void __user *ptr, long fifth)
397 (struct oabi_sembuf __user *)ptr,
401 (struct oabi_sembuf __user *)ptr,
403 (const struct old_timespec32 __user *)fifth);
410 struct oabi_sembuf __user *tsops,
412 const struct old_timespec32 __user *timeout)
417 asmlinkage long sys_oabi_semop(int semid, struct oabi_sembuf __user *tsops,
424 void __user *ptr, long fifth)
430 asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen)
440 asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen)
450 asmlinkage long sys_oabi_sendto(int fd, void __user *buff,
452 struct sockaddr __user *addr,
463 asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags)
465 struct sockaddr __user *addr;
489 asmlinkage long sys_oabi_socketcall(int call, unsigned long __user *args)
496 r = sys_oabi_bind(a[0], (struct sockaddr __user *)a[1], a[2]);
500 r = sys_oabi_connect(a[0], (struct sockaddr __user *)a[1], a[2]);
504 r = sys_oabi_sendto(a[0], (void __user *)a[1], a[2], a[3],
505 (struct sockaddr __user *)a[4], a[5]);
509 r = sys_oabi_sendmsg(a[0], (struct user_msghdr __user *)a[1], a[2]);