Lines Matching refs:ret
735 int ret; in __close_range() local
746 ret = unshare_fd(CLONE_FILES, max_unshare_fds, &fds); in __close_range()
747 if (ret) in __close_range()
748 return ret; in __close_range()
818 int ret; in close_fd_get_file() local
821 ret = __close_fd_get_file(fd, res); in close_fd_get_file()
824 return ret; in close_fd_get_file()
1237 int ret = -EBADF; in SYSCALL_DEFINE1() local
1241 ret = get_unused_fd_flags(0); in SYSCALL_DEFINE1()
1242 if (ret >= 0) in SYSCALL_DEFINE1()
1243 fd_install(ret, file); in SYSCALL_DEFINE1()
1247 return ret; in SYSCALL_DEFINE1()