Lines Matching defs:pathname
555 static int path_setxattr(const char __user *pathname,
562 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
578 SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
582 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
585 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
589 return path_setxattr(pathname, name, value, size, flags, 0);
653 static ssize_t path_getxattr(const char __user *pathname,
660 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
672 SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
675 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
678 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
681 return path_getxattr(pathname, name, value, size, 0);
730 static ssize_t path_listxattr(const char __user *pathname, char __user *list,
736 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
748 SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
751 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
754 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
757 return path_listxattr(pathname, list, size, 0);
791 static int path_removexattr(const char __user *pathname,
797 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
813 SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
816 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
819 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
822 return path_removexattr(pathname, name, 0);