Home
last modified time | relevance | path

Searched refs:FAN_ACCESS (Results 1 – 6 of 6) sorted by relevance

/external/strace/xlat/
Dfan_event_flags.h6 #if defined(FAN_ACCESS) || (defined(HAVE_DECL_FAN_ACCESS) && HAVE_DECL_FAN_ACCESS)
8 static_assert((FAN_ACCESS) == (0x00000001), "FAN_ACCESS != 0x00000001");
11 # define FAN_ACCESS 0x00000001
87 XLAT(FAN_ACCESS),
Dfan_event_flags.in1 FAN_ACCESS 0x00000001
/external/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify01.c105 FAN_ACCESS | FAN_MODIFY | FAN_CLOSE | FAN_OPEN, in test_fanotify()
126 event_set[tst_count] = FAN_ACCESS; in test_fanotify()
166 FAN_ACCESS, AT_FDCWD, fname) < 0) { in test_fanotify()
198 event_set[tst_count] = FAN_ACCESS; in test_fanotify()
348 FAN_ACCESS | FAN_MODIFY | FAN_CLOSE | FAN_OPEN, in test_fanotify()
Dfanotify02.c49 if (fanotify_mark(fd_notify, FAN_MARK_ADD, FAN_ACCESS | in test01()
88 event_set[tst_count] = FAN_ACCESS; in test01()
/external/kernel-headers/original/uapi/linux/
Dfanotify.h8 #define FAN_ACCESS 0x00000001 /* File was accessed */ macro
94 #define FAN_ALL_EVENTS (FAN_ACCESS |\
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs2627 pub const FAN_ACCESS: u64 = 0x0000_0001; constant