Home
last modified time | relevance | path

Searched refs:lockf (Results 1 – 17 of 17) sorted by relevance

/external/skia/tools/
Dok.cpp44 lockf(log_fd, F_LOCK, 0); in setup_crash_handler()
62 lockf(log_fd, F_ULOCK, 0); in setup_crash_handler()
82 lockf(log_fd, F_LOCK, 0); in ok_log()
88 lockf(log_fd, F_ULOCK, 0); in ok_log()
/external/libchrome/base/
Dos_compat_android.h24 inline int lockf(int fd, int cmd, off_t ignored_len) { in lockf() function
/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py68 fcntl.lockf(f, lock_type)
74 fcntl.lockf(f, fcntl.LOCK_UN)
/external/toolchain-utils/
Dfile_lock_machine.py39 fcntl.lockf(fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
172 fcntl.lockf(fp, fcntl.LOCK_UN)
254 fcntl.lockf(f, fcntl.LOCK_UN)
/external/elfutils/tests/
Dlfs-symbols47 lockf
/external/python/cpython2/Doc/library/
Dfcntl.rst113 .. function:: lockf(fd, operation, [length, [start, [whence]]])
165 function provides an alternative to the :func:`lockf` and :func:`flock`
Dposixfile.rst16 by the :func:`fcntl.lockf` call.
Dmailbox.rst463 :c:func:`flock` and :c:func:`lockf` system calls.
577 :c:func:`flock` and :c:func:`lockf` system calls. For MH mailboxes, locking
675 :c:func:`flock` and :c:func:`lockf` system calls.
726 :c:func:`flock` and :c:func:`lockf` system calls.
/external/llvm/test/Analysis/ScalarEvolution/
Davoid-infinite-recursion-1.ll33 %23 = type <{ %struct.lockf*, %struct.lockf** }> ; type %23
87 …%struct.lockf = type <{ %23, %struct.mtx, %struct.lockf_entry_list, %struct.lockf_entry_list, i32,…
161 … i8, i8, i8, %struct.freelst, %struct.bufobj, %struct.vpollinfo*, %struct.label*, %struct.lockf* }>
/external/swiftshader/third_party/LLVM/test/Analysis/ScalarEvolution/
Davoid-infinite-recursion-1.ll33 %23 = type <{ %struct.lockf*, %struct.lockf** }> ; type %23
87 …%struct.lockf = type <{ %23, %struct.mtx, %struct.lockf_entry_list, %struct.lockf_entry_list, i32,…
161 … i8, i8, i8, %struct.freelst, %struct.bufobj, %struct.vpollinfo*, %struct.label*, %struct.lockf* }>
/external/libcups/cups/
Dfile.c1031 return (lockf(fp->fd, block ? F_LOCK : F_TLOCK, 0)); in cupsFileLock()
2070 return (lockf(fp->fd, F_ULOCK, 0)); in cupsFileUnlock()
/external/python/cpython2/Lib/
Dmailbox.py1977 fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB)
2011 fcntl.lockf(f, fcntl.LOCK_UN)
2019 fcntl.lockf(f, fcntl.LOCK_UN)
/external/python/cpython2/Doc/whatsnew/
D2.2.rst143 return fcntl.lockf(self.fileno(), operation,
D2.6.rst2956 * The :mod:`posixfile` module has been deprecated; :func:`fcntl.lockf`
/external/compiler-rt/lib/dfsan/
Dlibc_ubuntu1404_abilist.txt2202 fun:lockf=uninstrumented
/external/e2fsprogs/
DRELEASE-NOTES3984 Use fcntl locking instead of lockf in libuuid since Cygwin doesn't
3985 support lockf().
/external/python/cpython2/Misc/
DHISTORY14348 - Added fcntl.lockf(). This should be used for Unix file locking
14349 instead of the posixfile module; lockf() is more portable.