Home
last modified time | relevance | path

Searched refs:event_f_flags (Results 1 – 7 of 7) sorted by relevance

/external/strace/tests/
Dfanotify_init.c44 kernel_ulong_t event_f_flags, const char *event_f_flags_str) in do_call() argument
48 rc = syscall(__NR_fanotify_init, flags, event_f_flags); in do_call()
73 static const struct strval event_f_flags[] = { in main() local
84 for (j = 0; j < ARRAY_SIZE(event_f_flags); j++) in main()
86 event_f_flags[j].val, event_f_flags[j].str); in main()
/external/strace/tests-mx32/
Dfanotify_init.c44 kernel_ulong_t event_f_flags, const char *event_f_flags_str) in do_call() argument
48 rc = syscall(__NR_fanotify_init, flags, event_f_flags); in do_call()
73 static const struct strval event_f_flags[] = { in main() local
84 for (j = 0; j < ARRAY_SIZE(event_f_flags); j++) in main()
86 event_f_flags[j].val, event_f_flags[j].str); in main()
/external/strace/tests-m32/
Dfanotify_init.c44 kernel_ulong_t event_f_flags, const char *event_f_flags_str) in do_call() argument
48 rc = syscall(__NR_fanotify_init, flags, event_f_flags); in do_call()
73 static const struct strval event_f_flags[] = { in main() local
84 for (j = 0; j < ARRAY_SIZE(event_f_flags); j++) in main()
86 event_f_flags[j].val, event_f_flags[j].str); in main()
/external/musl/src/linux/
Dfanotify.c4 int fanotify_init(unsigned flags, unsigned event_f_flags) in fanotify_init() argument
6 return syscall(SYS_fanotify_init, flags, event_f_flags); in fanotify_init()
/external/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify.h18 unsigned int flags, unsigned int event_f_flags) in safe_fanotify_init() argument
22 rval = fanotify_init(flags, event_f_flags); in safe_fanotify_init()
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h3018 void __sanitizer_syscall_pre_impl_fanotify_init(long flags, long event_f_flags);
3020 long event_f_flags);
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs4393 pub fn fanotify_init(flags: ::c_uint, event_f_flags: ::c_uint) -> ::c_int; in fanotify_init()