Home
last modified time | relevance | path

Searched refs:DN_MULTISHOT (Results 1 – 16 of 16) sorted by relevance

/external/strace/xlat/
Dnotifyflags.h35 #if defined(DN_MULTISHOT) || (defined(HAVE_DECL_DN_MULTISHOT) && HAVE_DECL_DN_MULTISHOT)
36 XLAT(DN_MULTISHOT),
Dnotifyflags.in7 DN_MULTISHOT
/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.h76 #define DN_MULTISHOT 0x80000000 /* Don't remove notifier */ macro
/external/python/cpython3/Modules/
Dfcntlmodule.c582 #ifdef DN_MULTISHOT in all_ins()
583 if (PyModule_AddIntMacro(m, DN_MULTISHOT)) return -1; in all_ins()
/external/python/cpython2/Modules/
Dfcntlmodule.c564 #ifdef DN_MULTISHOT in all_ins()
565 if (ins(d, "DN_MULTISHOT", (long)DN_MULTISHOT)) return -1; in all_ins()
/external/python/cpython2/Lib/test/
Dtest_fcntl.py119 flags = fcntl.DN_MULTISHOT
/external/python/cpython3/Lib/test/
Dtest_fcntl.py118 flags = fcntl.DN_MULTISHOT
/external/syzkaller/sys/linux/
Dsys_386.const55 DN_MULTISHOT = 2147483648
Dsys_amd64.const55 DN_MULTISHOT = 2147483648
Dsys_arm.const55 DN_MULTISHOT = 2147483648
Dsys_ppc64le.const55 DN_MULTISHOT = 2147483648
Dsys_arm64.const55 DN_MULTISHOT = 2147483648
Dsys.txt1027 fcntl_notify = DN_MULTISHOT, DN_ACCESS, DN_MODIFY, DN_CREATE, DN_DELETE, DN_RENAME, DN_ATTRIB
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst2662 which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT
/external/python/cpython3/Misc/
DHISTORY14749 DN_MULTISHOT with F_NOTIFY).