HomeSort by relevance Sort by last modified time
    Searched full:flock (Results 1 - 25 of 847) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm64/syscalls/
flock.S 5 ENTRY(flock) function
14 END(flock)
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
example.dsc 5 'NAME' : 'flock',
8 'flock.cc',
23 'NAME': 'flock',
frame_counter.cc 8 #include "nacl_app/flock.h"
  /bionic/libc/arch-arm/syscalls/
flock.S 5 ENTRY(flock) function
14 END(flock)
  /bionic/libc/arch-mips/syscalls/
flock.S 5 ENTRY(flock) function
19 END(flock)
  /bionic/libc/arch-x86_64/syscalls/
flock.S 5 ENTRY(flock) function
15 END(flock)
  /bionic/libc/arch-mips64/syscalls/
flock.S 5 ENTRY(flock) function
25 END(flock)
  /bionic/libc/arch-x86/syscalls/
flock.S 5 ENTRY(flock) function
26 END(flock)
  /external/chromium_org/tools/gyp/pylib/gyp/
flock_tool.py 6 """These functions are executed via gyp-flock-tool when using the Makefile
7 generator. Used on systems that don't have a built-in flock."""
22 """This class emulates the 'flock' command."""
36 """Emulates the most basic behavior of Linux's flock(1)."""
39 # where fcntl.flock(fd, LOCK_EX) always fails
  /external/chromium_org/third_party/sqlite/src/test/
lock5.test 104 if {[catch {sqlite3 db test.db -vfs unix-flock} msg]} {
109 do_test lock5-flock.1 {
110 sqlite3 db test.db -vfs unix-flock
119 do_test lock5-flock.2 {
123 do_test lock5-flock.3 {
124 catch { sqlite3 db2 test.db -vfs unix-flock }
128 do_test lock5-flock.4 {
133 do_test lock5-flock.5 {
138 do_test lock5-flock.6 {
143 do_test lock5-flock.7
    [all...]
  /external/chromium_org/base/
os_compat_android.h 21 // The lockf() function is not available on Android; we translate to flock().
25 return flock(fd, cmd);
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWrite.h 51 reinterpret_cast<const void **>(&fData), &fSize, &fLock, &fExists);
55 fFontFace->ReleaseFontTable(fLock);
65 void* fLock;
  /external/skia/src/utils/win/
SkDWrite.h 51 reinterpret_cast<const void **>(&fData), &fSize, &fLock, &fExists);
55 fFontFace->ReleaseFontTable(fLock);
65 void* fLock;
  /external/kernel-headers/original/uapi/asm-mips/asm/
fcntl.h 53 * The flavours of struct flock. "struct flock" is the ABI compliant
54 * variant. Finally struct flock64 is the LFS variant of struct flock. As
56 * contain all the same fields as struct flock.
63 struct flock { struct
  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 259 * For 32 bit flocks we are converting a portable/ARM struct flock to a MIPS struct flock:
262 * struct flock { struct flock_portable {
296 struct flock flock; /* Native MIPS structure */ local
331 flock.l_type = flock_portable->l_type;
332 flock.l_whence = flock_portable->l_whence;
333 flock.l_start = (off_t) flock_portable->l_start;
334 flock.l_len = (off_t) flock_portable->l_len;
335 flock.l_sysid = 0L
    [all...]
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.cc 53 HANDLE_EINTR(flock(file_lock_, LOCK_EX | LOCK_NB))) == -1 &&
61 perror("flock");
74 ignore_result(HANDLE_EINTR(flock(file_lock_, LOCK_UN)));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
fcntl.h 109 /* for old implementation of bsd flock () */
120 /* operations for bsd flock(), also used by the kernel implementation */
127 #define LOCK_MAND 32 /* This is a mandatory flock ... */
139 struct flock { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
fcntl.h 109 /* for old implementation of bsd flock () */
120 /* operations for bsd flock(), also used by the kernel implementation */
127 #define LOCK_MAND 32 /* This is a mandatory flock ... */
139 struct flock { struct
  /art/runtime/base/
scoped_flock_test.cc 29 // NOTE: Locks applied using flock(2) and fcntl(2) are oblivious
30 // to each other, so attempting to query locks set by flock using
  /external/chromium_org/tools/gyp/test/make_global_settings/basics/
gyptest-make_global_settings.py 30 LINK ?= flock $(builddir)/linker.lock $(abspath clang)
34 LINK ?= ./gyp-mac-tool flock $(builddir)/linker.lock $(abspath clang)
  /external/ppp/pppd/plugins/radius/
lock.c 18 struct flock fl;
37 struct flock fl;
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 34 // TODO: Fix flock usage under windows
40 int flock(int fd, int operation) { function
151 // Determine the lock operation (2nd argument) to the flock().
166 if (::flock(mFD, lock_operation) == 0) {
187 // flock() was not performed successfully. Check the errno to see whether
190 // flock() was interrupted by delivery of a signal. Restart without
199 // There's a fatal error occurs when perform flock(). Return immediately
215 if (::flock(mFD, LOCK_UN) == 0) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 186 flock = struct.pack('lxxxxlxxxxlhh', \
189 flock = struct.pack('hhlllii', \
192 flock = struct.pack('hhllhh', \
195 flock = fcntl.fcntl(self._file_.fileno(), cmd, flock)
203 struct.unpack('lxxxxlxxxxlhh', flock)
206 struct.unpack('hhlllii', flock)
209 struct.unpack('hhllhh', flock)
212 struct.unpack('hhllhh', flock)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 186 flock = struct.pack('lxxxxlxxxxlhh', \
189 flock = struct.pack('hhlllii', \
192 flock = struct.pack('hhllhh', \
195 flock = fcntl.fcntl(self._file_.fileno(), cmd, flock)
203 struct.unpack('lxxxxlxxxxlhh', flock)
206 struct.unpack('hhlllii', flock)
209 struct.unpack('hhllhh', flock)
212 struct.unpack('hhllhh', flock)
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 154 /* for old implementation of bsd flock () */
160 /* operations for bsd flock(), also used by the kernel implementation */
167 #define LOCK_MAND 32 /* This is a mandatory flock ... */
179 struct flock { struct

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011>>