Home
last modified time | relevance | path

Searched refs:O_SHLOCK (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Modules/
Dbsddbmodule.c713 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdhashopen()
715 flags |= O_SHLOCK; in bsdhashopen()
764 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdbtopen()
766 flags |= O_SHLOCK; in bsdbtopen()
818 #if defined(O_EXLOCK) && defined(O_SHLOCK) in bsdrnopen()
820 flags |= O_SHLOCK; in bsdrnopen()
Dposixmodule.c9323 #ifdef O_SHLOCK in all_ins()
9324 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1; in all_ins()
/external/python/cpython2/Lib/test/
Dtest_posix.py229 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
238 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
240 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
246 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
/external/gptfdisk/
Ddiskio-unix.cc125 fd = open(realFilename.c_str(), O_WRONLY | O_SHLOCK); in OpenForWrite()
/external/python/cpython2/Doc/library/
Dfcntl.rst163 If the locking flags :data:`~os.O_SHLOCK` and :data:`~os.O_EXLOCK` are
Dos.rst915 O_SHLOCK
/external/python/cpython3/Lib/test/
Dtest_posix.py583 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
592 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
594 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
600 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
/external/rust/crates/nix/src/
Dfcntl.rs145 O_SHLOCK;
/external/python/cpython3/Doc/library/
Dfcntl.rst185 If the locking flags :data:`~os.O_SHLOCK` and :data:`~os.O_EXLOCK` are
Dos.rst1027 O_SHLOCK
/external/rust/crates/libc/src/unix/bsd/
Dmod.rs328 pub const O_SHLOCK: ::c_int = 0x10; 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.rs426 pub const O_SHLOCK: ::c_int = 0x0010_0000; constant
/external/python/cpython3/Modules/
Dposixmodule.c14688 #ifdef O_SHLOCK in all_ins()
14689 if (PyModule_AddIntMacro(m, O_SHLOCK)) 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.