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

1 2 3 4 5 6 7

  /bionic/libc/arch-mips/syscalls/
flock.S 4 .globl flock
6 .ent flock
8 flock: label
22 .end flock
  /bionic/libc/arch-arm/syscalls/
flock.S 6 ENTRY(flock) function
15 END(flock)
  /bionic/libc/arch-x86/syscalls/
flock.S 6 ENTRY(flock) function
24 END(flock)
  /external/ppp/pppd/plugins/radius/
lock.c 18 struct flock fl;
37 struct flock fl;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
file.h 40 /* Operations for the `flock' call. */
51 extern int flock (int __fd, int __operation) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
file.h 40 /* Operations for the `flock' call. */
51 extern int flock (int __fd, int __operation) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
file.h 40 /* Operations for the `flock' call. */
51 extern int flock (int __fd, int __operation) __THROW;
  /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...]
  /bionic/libc/kernel/arch-mips/asm/
fcntl.h 46 struct flock { struct
  /development/ndk/platforms/android-9/arch-mips/include/asm/
fcntl.h 46 struct flock { struct
  /external/kernel-headers/original/asm-mips/
fcntl.h 37 * The flavours of struct flock. "struct flock" is the ABI compliant
38 * variant. Finally struct flock64 is the LFS variant of struct flock. As
40 * contain all the same fields as struct flock.
45 struct flock { struct
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
fcntl.h 46 struct flock { struct
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
fcntl.h 46 struct flock { struct
  /external/chromium/chrome/browser/importer/
firefox_profile_lock_posix.cc 101 struct flock lock;
108 struct flock testlock = lock;
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 113 StructFlock flock = new StructFlock(); local
114 flock.l_type = (short) (shared ? F_RDLCK : F_WRLCK);
115 flock.l_whence = (short) SEEK_SET;
116 flock.l_start = position;
117 flock.l_len = translateLockLength(size);
121 success = (Libcore.os.fcntlFlock(fd, wait ? F_SETLKW64 : F_SETLK64, flock) != -1);
187 StructFlock flock = new StructFlock(); local
188 flock.l_type = (short) F_UNLCK;
189 flock.l_whence = (short) SEEK_SET;
190 flock.l_start = lock.position()
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
file_lock.py 48 fcntl.flock(self._lock_file_descriptor, fcntl.LOCK_EX | fcntl.LOCK_NB)
56 fcntl.flock(self._lock_file_descriptor, fcntl.LOCK_UN)
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelLockingTest.java 106 FileLock flock = readWriteChannel.lock(); local
107 if (flock != null) {
108 flock.release();
  /external/clang/test/Sema/
warn-type-safety.c 123 struct flock { }; struct
126 static const int F_SETLK_tag __attribute__(( type_tag_for_datatype(fcntl,struct flock *) )) = F_SETLK;
130 void test_argument_with_type_tag(struct flock *f)
135 fcntl(0, F_SETLK, 10); // expected-warning {{argument type 'int' doesn't match specified 'fcntl' type tag that requires 'struct flock *'}}
136 fcntl(0, F_DUPFD, f); // expected-warning {{argument type 'struct flock *' doesn't match specified 'fcntl' type tag that requires 'int'}}
  /bionic/libc/kernel/common/asm-generic/
fcntl.h 164 struct flock { struct
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 117 struct flock { struct
  /external/chromium/chrome/browser/
process_singleton_mac.cc 86 int rc = HANDLE_EINTR(flock(lock_fd_, LOCK_EX|LOCK_NB));
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 68 flock($fh, 2);
83 flock($fh, 8);
198 flock(FILE, 2);
215 flock(FILE, 8);
  /external/kernel-headers/original/asm-generic/
fcntl.h 142 /* for old implementation of bsd flock () */
148 /* operations for bsd flock(), also used by the kernel implementation */
155 #define LOCK_MAND 32 /* This is a mandatory flock ... */
167 struct flock { struct
  /external/valgrind/main/none/tests/
mmap_fcntl_bug.c 18 struct flock fl;
  /libcore/luni/src/main/native/
Portability.h 34 #define flock64 flock

Completed in 871 milliseconds

1 2 3 4 5 6 7