Lines Matching refs:flock
296 struct flock flock; /* Native MIPS structure */ in WRAP() local
331 flock.l_type = flock_portable->l_type; in WRAP()
332 flock.l_whence = flock_portable->l_whence; in WRAP()
333 flock.l_start = (off_t) flock_portable->l_start; in WRAP()
334 flock.l_len = (off_t) flock_portable->l_len; in WRAP()
335 flock.l_sysid = 0L; in WRAP()
336 flock.l_pid = flock_portable->l_pid; /* Perhaps 0 would be better */ in WRAP()
338 result = __fcntl64(fd, mips_cmd, (void *) &flock); in WRAP()
340 flock_portable->l_type = flock.l_type; in WRAP()
341 flock_portable->l_whence = flock.l_whence; in WRAP()
342 flock_portable->l_start = flock.l_start; in WRAP()
343 flock_portable->l_len = flock.l_len; in WRAP()
344 flock_portable->l_pid = flock.l_pid; in WRAP()
370 result = __fcntl64(fd, mips_cmd, (void *) &flock); in WRAP()