Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dbsddbmodule.c713 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdhashopen()
717 flags |= O_EXLOCK; in bsdhashopen()
764 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdbtopen()
768 flags |= O_EXLOCK; in bsdbtopen()
818 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdrnopen()
822 flags |= O_EXLOCK; in bsdrnopen()
Dposixmodule.c9326 #ifdef O_EXLOCK in all_ins()
9327 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1; in all_ins()
/external/python/cpython2/Lib/test/
Dtest_posix.py222 os.O_WRONLY|os.O_EXLOCK|os.O_CREAT)
224 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
231 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
248 os.O_RDONLY|os.O_EXLOCK|os.O_NONBLOCK)
/external/python/cpython2/Doc/library/
Dfcntl.rst163 If the locking flags :data:`~os.O_SHLOCK` and :data:`~os.O_EXLOCK` are
Dos.rst916 O_EXLOCK
/external/python/cpython3/Lib/test/
Dtest_posix.py576 os.O_WRONLY|os.O_EXLOCK|os.O_CREAT)
578 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
585 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
602 os.O_RDONLY|os.O_EXLOCK|os.O_NONBLOCK)
/external/rust/crates/nix/src/
Dfcntl.rs88 O_EXLOCK;
/external/python/cpython3/Doc/library/
Dfcntl.rst185 If the locking flags :data:`~os.O_SHLOCK` and :data:`~os.O_EXLOCK` are
Dos.rst1028 O_EXLOCK
/external/rust/crates/libc/src/unix/bsd/
Dmod.rs329 pub const O_EXLOCK: ::c_int = 0x20; constant
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a2.rst118 Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants
/external/rust/crates/libc/src/unix/redox/
Dmod.rs427 pub const O_EXLOCK: ::c_int = 0x0020_0000; constant
/external/python/cpython3/Modules/
Dposixmodule.c14691 #ifdef O_EXLOCK in all_ins()
14692 if (PyModule_AddIntMacro(m, O_EXLOCK)) return -1; in all_ins()
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1453 :attr:`os.O_SHLOCK` and :attr:`os.O_EXLOCK`.
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1454 :attr:`os.O_SHLOCK` and :attr:`os.O_EXLOCK`.
/external/python/cpython2/Misc/
DHISTORY1501 - Patch #1103951: Expose O_SHLOCK and O_EXLOCK in the posix module if
/external/python/cpython3/Misc/
DHISTORY18885 - Patch #1103951: Expose O_SHLOCK and O_EXLOCK in the posix module if
/external/strace/
DChangeLog883 O_SHLOCK, O_EXLOCK): Remove flags that are not present in Linux.