Home
last modified time | relevance | path

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

/third_party/node/deps/uv/include/uv/
Dunix.h442 #if defined(O_EXLOCK)
443 # define UV_FS_O_EXLOCK O_EXLOCK
/third_party/libuv/include/uv/
Dunix.h443 #if defined(O_EXLOCK)
444 # define UV_FS_O_EXLOCK O_EXLOCK
/third_party/rust/crates/libc/libc-test/semver/
Dredox.txt120 O_EXLOCK
Dopenbsd.txt605 O_EXLOCK
Ddragonfly.txt708 O_EXLOCK
Dnetbsd.txt745 O_EXLOCK
Dfreebsd.txt823 O_EXLOCK
Dapple.txt1019 O_EXLOCK
/third_party/python/Lib/test/
Dtest_posix.py583 os.O_WRONLY|os.O_EXLOCK|os.O_CREAT)
585 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
592 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
609 os.O_RDONLY|os.O_EXLOCK|os.O_NONBLOCK)
/third_party/python/Doc/library/
Dfcntl.rst190 If the locking flags :data:`~os.O_SHLOCK` and :data:`~os.O_EXLOCK` are
Dos.rst1113 O_EXLOCK
/third_party/rust/crates/nix/src/
Dfcntl.rs102 O_EXLOCK;
/third_party/rust/crates/libc/src/unix/bsd/
Dmod.rs339 pub const O_EXLOCK: ::c_int = 0x20; constant
/third_party/python/Misc/NEWS.d/
D3.6.0a2.rst118 Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants
/third_party/rust/crates/libc/src/unix/redox/
Dmod.rs448 pub const O_EXLOCK: ::c_int = 0x0020_0000; constant
/third_party/python/Modules/
Dposixmodule.c14957 #ifdef O_EXLOCK in all_ins()
14958 if (PyModule_AddIntMacro(m, O_EXLOCK)) return -1; in all_ins()
/third_party/python/Doc/whatsnew/
D2.5.rst1454 :attr:`os.O_SHLOCK` and :attr:`os.O_EXLOCK`.
/third_party/python/Misc/
DHISTORY18885 - Patch #1103951: Expose O_SHLOCK and O_EXLOCK in the posix module if