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
1136
inline struct open_how build_open_how(int flags, umode_t mode)
fs/open.c
1138
struct open_how how = {
fs/open.c
1152
inline int build_open_flags(const struct open_how *how, struct open_flags *op)
fs/open.c
1322
struct open_how how = build_open_how(flags, mode);
fs/open.c
1351
struct open_how how = build_open_how(flags, mode);
fs/open.c
1360
struct open_how *how)
fs/open.c
1373
struct open_how how = build_open_how(flags, mode);
fs/open.c
1394
struct open_how __user *, how, size_t, usize)
fs/open.c
1397
struct open_how tmp;
fs/open.c
1399
BUILD_BUG_ON(sizeof(struct open_how) < OPEN_HOW_SIZE_VER0);
fs/open.c
1400
BUILD_BUG_ON(sizeof(struct open_how) != OPEN_HOW_SIZE_LATEST);
include/linux/audit.h
445
extern void __audit_openat2_how(struct open_how *how);
include/linux/audit.h
542
static inline void audit_openat2_how(struct open_how *how)
include/linux/audit.h
699
static inline void audit_openat2_how(struct open_how *how)
include/linux/syscalls.h
471
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/filesystems/openat2/helpers.h
122
struct open_how how = {};
tools/testing/selftests/filesystems/openat2/helpers.h
125
BUILD_BUG_ON(sizeof(struct open_how) != OPEN_HOW_SIZE_VER0);
tools/testing/selftests/filesystems/openat2/helpers.h
27
static bool needs_openat2(const struct open_how *how)
tools/testing/selftests/filesystems/openat2/helpers.h
41
static int sys_openat2(int dfd, const char *path, struct open_how *how)
tools/testing/selftests/filesystems/openat2/helpers.h
47
static int sys_openat(int dfd, const char *path, struct open_how *how)
tools/testing/selftests/filesystems/openat2/openat2_test.c
329
struct open_how how = {
tools/testing/selftests/filesystems/openat2/openat2_test.c
33
struct open_how inner;
tools/testing/selftests/filesystems/openat2/openat2_test.c
50
struct open_how how;
tools/testing/selftests/filesystems/openat2/openat2_test.c
75
.size = sizeof(struct open_how) },
tools/testing/selftests/filesystems/openat2/rename_attack_test.c
114
struct open_how how = {
tools/testing/selftests/filesystems/openat2/resolve_test.c
24
struct open_how how;
tools/testing/selftests/filesystems/openat2/resolve_test.c
40
struct open_how how = test->how;