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

1 2 3 4 5 6 7 8 9

  /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;
  /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);
  /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;
  /cts/suite/pts/deviceTests/opengl/jni/reference/scene/flocking/
Boid.h 24 void flock(const Boid* boids[], int numBoids, int index, float limitX, float limitY);
  /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
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
fcntl.h 46 struct flock { struct
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
fcntl.h 46 struct flock { struct
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
fcntl.h 46 struct flock { struct
  /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/chromium/chrome/browser/importer/
firefox_profile_lock_posix.cc 101 struct flock lock;
108 struct flock testlock = lock;
  /external/chromium_org/chrome/browser/importer/
firefox_profile_lock_posix.cc 101 struct flock lock;
108 struct flock testlock = lock;
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.cc 52 HANDLE_EINTR(flock(file_lock_, LOCK_EX | LOCK_NB))) == -1 &&
60 perror("flock");
73 ignore_result(HANDLE_EINTR(flock(file_lock_, LOCK_UN)));
  /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/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'}}

Completed in 1625 milliseconds

1 2 3 4 5 6 7 8 9