Symbol: open_how
fs/internal.h
197
extern struct open_how build_open_how(int flags, umode_t mode);
fs/internal.h
198
extern int build_open_flags(const struct open_how *how, struct open_flags *op);
fs/open.c
1165
inline struct open_how build_open_how(int flags, umode_t mode)
fs/open.c
1167
struct open_how how = {
fs/open.c
1181
inline int build_open_flags(const struct open_how *how, struct open_flags *op)
fs/open.c
1320
struct open_how how = build_open_how(flags, mode);
fs/open.c
1349
struct open_how how = build_open_how(flags, mode);
fs/open.c
1358
struct open_how *how)
fs/open.c
1371
struct open_how how = build_open_how(flags, mode);
fs/open.c
1392
struct open_how __user *, how, size_t, usize)
fs/open.c
1395
struct open_how tmp;
fs/open.c
1397
BUILD_BUG_ON(sizeof(struct open_how) < OPEN_HOW_SIZE_VER0);
fs/open.c
1398
BUILD_BUG_ON(sizeof(struct open_how) != OPEN_HOW_SIZE_LATEST);
include/linux/audit.h
436
extern void __audit_openat2_how(struct open_how *how);
include/linux/audit.h
533
static inline void audit_openat2_how(struct open_how *how)
include/linux/audit.h
690
static inline void audit_openat2_how(struct open_how *how)
include/linux/syscalls.h
467
struct open_how __user *how, size_t size);
include/linux/syscalls.h
70
struct open_how;
io_uring/openclose.c
107
struct open_how __user *how;
io_uring/openclose.c
27
struct open_how how;
kernel/audit.h
203
struct open_how openat2;
kernel/auditsc.c
2804
void __audit_openat2_how(struct open_how *how)
tools/testing/selftests/openat2/helpers.c
101
BUILD_BUG_ON(sizeof(struct open_how) != OPEN_HOW_SIZE_VER0);
tools/testing/selftests/openat2/helpers.c
17
bool needs_openat2(const struct open_how *how)
tools/testing/selftests/openat2/helpers.c
28
int sys_openat2(int dfd, const char *path, struct open_how *how)
tools/testing/selftests/openat2/helpers.c
33
int sys_openat(int dfd, const char *path, struct open_how *how)
tools/testing/selftests/openat2/helpers.c
98
struct open_how how = {};
tools/testing/selftests/openat2/helpers.h
48
bool needs_openat2(const struct open_how *how);
tools/testing/selftests/openat2/helpers.h
97
int sys_openat2(int dfd, const char *path, struct open_how *how);
tools/testing/selftests/openat2/helpers.h
98
int sys_openat(int dfd, const char *path, struct open_how *how);
tools/testing/selftests/openat2/openat2_test.c
159
struct open_how how;
tools/testing/selftests/openat2/openat2_test.c
33
struct open_how inner;
tools/testing/selftests/openat2/openat2_test.c
59
.size = sizeof(struct open_how) },
tools/testing/selftests/openat2/rename_attack_test.c
91
struct open_how how = {
tools/testing/selftests/openat2/resolve_test.c
113
struct open_how how;