Lines Matching refs:pathname
582 static int path_setxattr(const char __user *pathname, in path_setxattr() argument
590 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); in path_setxattr()
607 SYSCALL_DEFINE5(setxattr, const char __user *, pathname, in SYSCALL_DEFINE5() argument
611 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW); in SYSCALL_DEFINE5()
614 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname, in SYSCALL_DEFINE5() argument
618 return path_setxattr(pathname, name, value, size, flags, 0); in SYSCALL_DEFINE5()
684 static ssize_t path_getxattr(const char __user *pathname, in path_getxattr() argument
691 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); in path_getxattr()
703 SYSCALL_DEFINE4(getxattr, const char __user *, pathname, in SYSCALL_DEFINE4() argument
706 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW); in SYSCALL_DEFINE4()
709 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname, in SYSCALL_DEFINE4() argument
712 return path_getxattr(pathname, name, value, size, 0); in SYSCALL_DEFINE4()
762 static ssize_t path_listxattr(const char __user *pathname, char __user *list, in path_listxattr() argument
768 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); in path_listxattr()
780 SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list, in SYSCALL_DEFINE3() argument
783 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW); in SYSCALL_DEFINE3()
786 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list, in SYSCALL_DEFINE3() argument
789 return path_listxattr(pathname, list, size, 0); in SYSCALL_DEFINE3()
824 static int path_removexattr(const char __user *pathname, in path_removexattr() argument
830 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); in path_removexattr()
846 SYSCALL_DEFINE2(removexattr, const char __user *, pathname, in SYSCALL_DEFINE2() argument
849 return path_removexattr(pathname, name, LOOKUP_FOLLOW); in SYSCALL_DEFINE2()
852 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname, in SYSCALL_DEFINE2() argument
855 return path_removexattr(pathname, name, 0); in SYSCALL_DEFINE2()