HomeSort by relevance Sort by last modified time
    Searched refs:flock (Results 76 - 100 of 251) sorted by null

1 2 34 5 6 7 8 91011

  /external/valgrind/memcheck/tests/
file_locking.c 26 struct flock fl;
  /external/ltp/testcases/network/nfsv4/locks/
locktests.c 148 struct flock request;
263 void lockWholeFile(struct flock *request)
383 void serializeFLock(struct flock *request)
407 void unSerializeFLock(struct flock *request)
417 int serverSendLockClient(struct flock *request, int client)
423 int serverSendLockLocal(struct flock *request, int slave)
429 int getLockSection(struct flock *request)
496 struct flock lock;
582 struct flock request;
753 struct flock request
    [all...]
  /frameworks/base/cmds/idmap/
scan.cpp 42 // before we can guarantee mutual exclusion via the flock
48 if (TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_EX)) != 0) {
54 TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_UN));
65 TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_UN));
  /cts/tests/openglperf2/jni/reference/scene/flocking/
Boid.cpp 20 void Boid::flock(const Boid* boids[], int numBoids, int index, float limitX, float limitY) { function in class:Boid
  /dalvik/dx/tests/
run-all-tests 144 flock "${lock_file}" ./run-test --output_dir "${output_dir}" "${test_name}"
  /external/compiler-rt/lib/profile/
InstrProfilingUtil.c 82 struct flock s_flock;
GCDAProfiling.c 286 /* Try to flock the file to serialize concurrent processes writing out to the
290 flock(fd, LOCK_EX);
489 flock(fd, LOCK_UN);
  /external/toybox/toys/pending/
userdel.c 30 struct flock lock;
  /libcore/ojluni/src/main/native/
FileSystemPreferences.c 56 typedef struct flock FLOCK;
58 typedef struct flock64 FLOCK;
74 FLOCK fl;
125 FLOCK fl;
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_tc6.c 118 struct flock flock_struct;
119 struct flock *flock_ptr = &flock_struct;
368 /* file segment locking set data type flock - information
  /external/vboot_reference/futility/
futility.c 72 struct flock lock;
88 struct flock lock;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
fcntlmodule.c 246 /* flock(fd, operation) */
255 if (!PyArg_ParseTuple(args, "O&i:flock",
261 ret = flock(fd, code);
272 struct flock l;
281 "unrecognized flock argument");
299 "flock(fd, operation)\n\
302 manual page for flock(3) for details. (On some systems, this function is\n\
330 struct flock l;
409 {"flock", fcntl_flock, METH_VARARGS, flock_doc},
525 /* Old BSD flock(). */
    [all...]
  /external/python/cpython2/Modules/
fcntlmodule.c 248 /* flock(fd, operation) */
257 if (!PyArg_ParseTuple(args, "O&i:flock",
263 ret = flock(fd, code);
274 struct flock l;
283 "unrecognized flock argument");
301 "flock(fd, operation)\n\
304 manual page for flock(2) for details. (On some systems, this function is\n\
332 struct flock l;
411 {"flock", fcntl_flock, METH_VARARGS, flock_doc},
527 /* Old BSD flock(). *
    [all...]
  /external/python/cpython3/Modules/
fcntlmodule.c 269 fcntl.flock
277 See the Unix manual page for flock(2) for details (On some systems, this
289 ret = flock(fd, code);
300 struct flock l;
309 "unrecognized flock argument");
374 struct flock l;
533 /* Old BSD flock(). */
  /external/autotest/client/cros/power/
sys_power.py 155 fcntl.flock(pause_ethernet_fd, fcntl.LOCK_SH)
  /external/libpcap/lbl/
os-sunos4.h 72 int flock(int, int);
  /external/ltp/testcases/kernel/syscalls/ftruncate/
ftruncate04.c 192 struct flock flocks;
  /external/selinux/restorecond/
user.c 215 if (flock(local_lock_fd, LOCK_EX | LOCK_NB) < 0) {
218 perror("flock");
  /external/tcpdump/lbl/
os-sunos4.h 73 int flock(int, int);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 117 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
122 /* For old implementation of bsd flock(). */
127 /* Operations for bsd flock(), also used by the kernel implementation. */
136 # define LOCK_MAND 32 /* This is a mandatory flock: */
153 struct flock struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 132 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
137 /* For old implementation of bsd flock(). */
142 /* Operations for bsd flock(), also used by the kernel implementation. */
151 # define LOCK_MAND 32 /* This is a mandatory flock: */
168 struct flock struct
  /external/iptables/iptables/
xshared.c 265 if (flock(fd, LOCK_EX) == 0)
274 if (flock(fd, LOCK_EX | LOCK_NB) == 0)
  /external/libmojo/third_party/catapult/devil/devil/android/
forwarder.py 38 fcntl.flock(self._fd, fcntl.LOCK_EX)
41 fcntl.flock(self._fd, fcntl.LOCK_UN)
  /external/ltp/pan/
zoolib.c 301 struct flock zlock;
337 struct flock zlock;
  /external/dhcpcd-6.8.2/
auth.c 404 flocked = flock(fileno(fp), LOCK_EX);
409 flocked = flock(fileno(fp), LOCK_EX);
430 flock(fileno(fp), LOCK_UN);

Completed in 652 milliseconds

1 2 34 5 6 7 8 91011