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

1 23

  /bionic/libc/kernel/common/asm-generic/
fcntl.h 164 struct flock { struct
  /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
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 114 StructFlock flock = new StructFlock(); local
115 flock.l_type = (short) (shared ? F_RDLCK : F_WRLCK);
116 flock.l_whence = (short) SEEK_SET;
117 flock.l_start = position;
118 flock.l_len = translateLockLength(size);
122 success = (Libcore.os.fcntlFlock(fd, wait ? F_SETLKW64 : F_SETLK64, flock) != -1);
188 StructFlock flock = new StructFlock(); local
189 flock.l_type = (short) F_UNLCK;
190 flock.l_whence = (short) SEEK_SET;
191 flock.l_start = lock.position()
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
fcntl.h 122 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
127 /* For old implementation of bsd flock(). */
132 /* Operations for bsd flock(), also used by the kernel implementation. */
141 # define LOCK_MAND 32 /* This is a mandatory flock: */
158 struct flock struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
fcntl.h 122 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
127 /* For old implementation of bsd flock(). */
132 /* Operations for bsd flock(), also used by the kernel implementation. */
141 # define LOCK_MAND 32 /* This is a mandatory flock: */
158 struct flock struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
fcntl.h 122 /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
127 /* For old implementation of bsd flock(). */
132 /* Operations for bsd flock(), also used by the kernel implementation. */
141 # define LOCK_MAND 32 /* This is a mandatory flock: */
158 struct flock struct
  /external/kernel-headers/original/linux/
fs.h 791 extern int fcntl_getlk(struct file *, struct flock __user *);
793 struct flock __user *);
1081 int (*flock) (struct file *, int, struct file_lock *); member in struct:file_operations
    [all...]

Completed in 317 milliseconds

1 23