Home
last modified time | relevance | path

Searched refs:F_NOTIFY (Results 1 – 18 of 18) sorted by relevance

/external/strace/xlat/
Dfcntlcmds.h338 #if defined(F_NOTIFY) || (defined(HAVE_DECL_F_NOTIFY) && HAVE_DECL_F_NOTIFY)
340 static_assert((F_NOTIFY) == ((1024 + 2)), "F_NOTIFY != (1024 + 2)");
343 # define F_NOTIFY (1024 + 2)
489 XLAT(F_NOTIFY),
Dfcntlcmds.in92 F_NOTIFY (1024 + 2)
/external/linux-kselftest/tools/testing/selftests/filesystems/
Ddnotify_test.c28 fcntl(fd, F_NOTIFY, DN_MODIFY|DN_CREATE|DN_MULTISHOT); in main()
/external/kernel-headers/original/uapi/linux/
Dfcntl.h24 #define F_NOTIFY (F_LINUX_SPECIFIC_BASE+2) macro
/external/python/cpython2/Modules/
Dfcntlmodule.c524 #ifdef F_NOTIFY in all_ins()
525 if (ins(d, "F_NOTIFY", (long)F_NOTIFY)) return -1; in all_ins()
/external/python/cpython3/Modules/
Dfcntlmodule.c569 #ifdef F_NOTIFY in all_ins()
570 if (PyModule_AddIntMacro(m, F_NOTIFY)) return -1; in all_ins()
/external/strace/
Dfcntl.c123 case F_NOTIFY: in print_fcntl()
DChangeLog-CVS88 Decode fcntl's F_{GET,SET}LEASE, F_NOTIFY, and F_DUPFD_CLOEXEC.
90 * desc.c: Add F_SETLEASE, F_GETLEASE, F_NOTIFY,
DChangeLog29328 * fcntl.c (print_fcntl): Print 3rd argument of F_NOTIFY, F_SETLEASE, and
35254 F_DUPFD_CLOEXEC, F_NOTIFY, F_SETLEASE, and F_GETLEASE macros.
/external/python/cpython2/Lib/test/
Dtest_fcntl.py117 cmd = fcntl.F_NOTIFY
/external/strace/tests/
Dfcntl-common.c347 { 0, ARG_STR(F_NOTIFY), ARG_STR(DN_ACCESS) }, in test_fcntl_others()
/external/strace/tests-mx32/
Dfcntl-common.c347 { 0, ARG_STR(F_NOTIFY), ARG_STR(DN_ACCESS) }, in test_fcntl_others()
/external/strace/tests-m32/
Dfcntl-common.c347 { 0, ARG_STR(F_NOTIFY), ARG_STR(DN_ACCESS) }, in test_fcntl_others()
/external/python/cpython3/Lib/test/
Dtest_fcntl.py131 cmd = fcntl.F_NOTIFY
/external/rust/crates/libc/src/unix/linux_like/
Dmod.rs464 pub const F_NOTIFY: ::c_int = 1026; constant
/external/rust/crates/libc/src/fuchsia/
Dmod.rs1413 pub const F_NOTIFY: ::c_int = 1026; constant
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst2663 with F_NOTIFY).
/external/python/cpython3/Misc/
DHISTORY14749 DN_MULTISHOT with F_NOTIFY).