Lines Matching defs:how
27 struct open_how how;
50 return open->how.flags & (O_TRUNC | O_CREAT | __O_TMPFILE);
64 /* open.how should be already initialised */
65 if (!(open->how.flags & O_PATH) && force_o_largefile())
66 open->how.flags |= O_LARGEFILE;
78 if (open->file_slot && (open->how.flags & O_CLOEXEC))
94 open->how = build_open_how(flags, mode);
101 struct open_how __user *how;
105 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
110 ret = copy_struct_from_user(&open->how, sizeof(open->how), how, len);
126 ret = build_open_flags(&open->how, &op);
130 resolve_nonblock = open->how.resolve & RESOLVE_CACHED;
138 ret = __get_unused_fd_flags(open->how.flags, open->nofile);