Lines Matching defs:how
24 struct open_how how;
42 return open->how.flags & (O_TRUNC | O_CREAT | __O_TMPFILE);
56 /* open.how should be already initialised */
57 if (!(open->how.flags & O_PATH) && force_o_largefile())
58 open->how.flags |= O_LARGEFILE;
70 if (open->file_slot && (open->how.flags & O_CLOEXEC))
86 open->how = build_open_how(flags, mode);
93 struct open_how __user *how;
97 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
102 ret = copy_struct_from_user(&open->how, sizeof(open->how), how, len);
118 ret = build_open_flags(&open->how, &op);
122 resolve_nonblock = open->how.resolve & RESOLVE_CACHED;
130 ret = __get_unused_fd_flags(open->how.flags, open->nofile);