Lines Matching refs:fl
43 struct flock fl; in lockf() local
46 fl.l_start = 0; in lockf()
47 fl.l_len = size; in lockf()
48 fl.l_whence = SEEK_CUR; in lockf()
53 fl.l_type = F_UNLCK; in lockf()
57 fl.l_type = F_WRLCK; in lockf()
61 fl.l_type = F_WRLCK; in lockf()
64 fl.l_type = F_WRLCK; in lockf()
67 (filedes, F_GETLK, &fl) == -1) in lockf()
69 if (fl.l_type == F_UNLCK || (fl.l_sysid == 0 && in lockf()
70 fl.l_pid == getpid())) in lockf()
81 return (INTERPOS_SYS(fcntl, filedes, cmd, (intptr_t)&fl)); in lockf()