HomeSort by relevance Sort by last modified time
    Searched defs:flock (Results 101 - 105 of 105) sorted by null

1 2 3 45

  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/asm-generic/
fcntl.h 176 struct flock { struct
  /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);
191 StructFlock flock = new StructFlock(); local
192 flock.l_type = (short) F_UNLCK;
193 flock.l_whence = (short) SEEK_SET;
194 flock.l_start = lock.position()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
fcntl.h 124 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
129 /* For old implementation of bsd flock(). */
134 /* Operations for bsd flock(), also used by the kernel implementation. */
143 # define LOCK_MAND 32 /* This is a mandatory flock: */
160 struct flock struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 124 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
129 /* For old implementation of bsd flock(). */
134 /* Operations for bsd flock(), also used by the kernel implementation. */
143 # define LOCK_MAND 32 /* This is a mandatory flock: */
160 struct flock struct
  /external/mksh/src/
sh.h 244 #undef flock /* SCO UnixWare defines that to flock64 but ENOENT */ macro
347 extern int flock(int, int);
    [all...]

Completed in 592 milliseconds

1 2 3 45