fl 214 compat/hpux/hpux_file.c struct flock fl;
fl 270 compat/hpux/hpux_file.c fl.l_start = hfl.hl_start;
fl 271 compat/hpux/hpux_file.c fl.l_len = hfl.hl_len;
fl 272 compat/hpux/hpux_file.c fl.l_pid = hfl.hl_pid;
fl 273 compat/hpux/hpux_file.c fl.l_type = hfl.hl_type;
fl 274 compat/hpux/hpux_file.c fl.l_whence = hfl.hl_whence;
fl 275 compat/hpux/hpux_file.c if (fl.l_whence == SEEK_CUR)
fl 276 compat/hpux/hpux_file.c fl.l_start += fp->f_offset;
fl 278 compat/hpux/hpux_file.c switch (fl.l_type) {
fl 286 compat/hpux/hpux_file.c error = VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg);
fl 295 compat/hpux/hpux_file.c error = VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg);
fl 299 compat/hpux/hpux_file.c error = VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &fl,
fl 323 compat/hpux/hpux_file.c fl.l_start = hfl.hl_start;
fl 324 compat/hpux/hpux_file.c fl.l_len = hfl.hl_len;
fl 325 compat/hpux/hpux_file.c fl.l_pid = hfl.hl_pid;
fl 326 compat/hpux/hpux_file.c fl.l_type = hfl.hl_type;
fl 327 compat/hpux/hpux_file.c fl.l_whence = hfl.hl_whence;
fl 328 compat/hpux/hpux_file.c if (fl.l_whence == SEEK_CUR)
fl 329 compat/hpux/hpux_file.c fl.l_start += fp->f_offset;
fl 332 compat/hpux/hpux_file.c VOP_ADVLOCK(vp, (caddr_t)p, F_GETLK, &fl, F_POSIX)))
fl 335 compat/hpux/hpux_file.c hfl.hl_start = fl.l_start;
fl 336 compat/hpux/hpux_file.c hfl.hl_len = fl.l_len;
fl 337 compat/hpux/hpux_file.c hfl.hl_pid = fl.l_pid;
fl 338 compat/hpux/hpux_file.c hfl.hl_type = fl.l_type;
fl 339 compat/hpux/hpux_file.c hfl.hl_whence = fl.l_whence;
fl 167 compat/linux/linux_file.c int error, fl;
fl 173 compat/linux/linux_file.c fl = linux_to_bsd_ioflags(SCARG(uap, flags));
fl 175 compat/linux/linux_file.c if (fl & O_CREAT)
fl 181 compat/linux/linux_file.c SCARG(&boa, flags) = fl;
fl 193 compat/linux/linux_file.c if (!(fl & O_NOCTTY) && SESS_LEADER(p) && !(p->p_flag & P_CONTROLT)) {
fl 651 compat/linux/linux_misc.c int flags = MAP_TRYFIXED, fl = SCARG(uap, flags);
fl 653 compat/linux/linux_misc.c flags |= cvtto_bsd_mask(fl, LINUX_MAP_SHARED, MAP_SHARED);
fl 654 compat/linux/linux_misc.c flags |= cvtto_bsd_mask(fl, LINUX_MAP_PRIVATE, MAP_PRIVATE);
fl 655 compat/linux/linux_misc.c flags |= cvtto_bsd_mask(fl, LINUX_MAP_FIXED, MAP_FIXED);
fl 656 compat/linux/linux_misc.c flags |= cvtto_bsd_mask(fl, LINUX_MAP_ANON, MAP_ANON);
fl 991 compat/sunos/sunos_ioctl.c struct flock *flp, fl;
fl 1005 compat/sunos/sunos_ioctl.c sunos_to_bsd_flock(&ifl, &fl);
fl 1007 compat/sunos/sunos_ioctl.c error = copyout(&fl, flp, sizeof fl);
fl 1015 compat/sunos/sunos_ioctl.c error = copyin(flp, &fl, sizeof fl);
fl 1019 compat/sunos/sunos_ioctl.c bsd_to_sunos_flock(&fl, &ifl);
fl 555 compat/svr4/svr4_fcntl.c struct flock *flp, fl;
fl 563 compat/svr4/svr4_fcntl.c svr3_to_bsd_flock(&ifl, &fl);
fl 565 compat/svr4/svr4_fcntl.c error = copyout(&fl, flp, sizeof fl);
fl 576 compat/svr4/svr4_fcntl.c error = copyin(flp, &fl, sizeof fl);
fl 580 compat/svr4/svr4_fcntl.c bsd_to_svr3_flock(&fl, &ifl);
fl 590 compat/svr4/svr4_fcntl.c struct flock *flp, fl;
fl 600 compat/svr4/svr4_fcntl.c svr4_to_bsd_flock(&ifl, &fl);
fl 602 compat/svr4/svr4_fcntl.c error = copyout(&fl, flp, sizeof fl);
fl 610 compat/svr4/svr4_fcntl.c error = copyin(flp, &fl, sizeof fl);
fl 614 compat/svr4/svr4_fcntl.c bsd_to_svr4_flock(&fl, &ifl);
fl 635 compat/svr4/svr4_fcntl.c struct flock fl;
fl 641 compat/svr4/svr4_fcntl.c svr4_to_bsd_flock(&ifl, &fl);
fl 642 compat/svr4/svr4_fcntl.c return fd_truncate(p, SCARG(uap, fd), &fl,
fl 1582 compat/svr4/svr4_stream.c int fl;
fl 1651 compat/svr4/svr4_stream.c fl = sasize;
fl 1652 compat/svr4/svr4_stream.c if ((error = copyout(&fl, flen, sizeof(fl))) != 0)
fl 1667 compat/svr4/svr4_stream.c fl = 1;
fl 1714 compat/svr4/svr4_stream.c fl = 0;
fl 1729 compat/svr4/svr4_stream.c fl = 1;
fl 1784 compat/svr4/svr4_stream.c fl = 0;
fl 1851 compat/svr4/svr4_stream.c fl = 0;
fl 1877 compat/svr4/svr4_stream.c if ((error = copyout(&fl, SCARG(uap, flags), sizeof(fl))) != 0)
fl 1885 compat/svr4/svr4_stream.c SCARG(uap, dat), fl);
fl 1268 dev/i2o/iop.c int rv, fl;
fl 1270 dev/i2o/iop.c fl = (async != 0 ? IM_WAIT : IM_POLL);
fl 1271 dev/i2o/iop.c im = iop_msg_alloc(sc, NULL, fl);
fl 3139 dev/pcmcia/if_ray.c hexdump(const u_int8_t *d, int len, int br, int div, int fl)
fl 3145 dev/pcmcia/if_ray.c if (len && (fl & HEXDF_NOOFFSET) == 0) {
fl 3155 dev/pcmcia/if_ray.c if ((fl & HEXDF_NOASCII) == 0) {
fl 3171 dev/pcmcia/if_ray.c if ((fl & HEXDF_NOCOMPRESS) == 0) {
fl 3193 dev/pcmcia/if_ray.c if ((fl & HEXDF_NOASCII) == 0) {
fl 305 kern/kern_descrip.c struct flock fl;
fl 414 kern/kern_descrip.c error = copyin((caddr_t)SCARG(uap, arg), (caddr_t)&fl,
fl 415 kern/kern_descrip.c sizeof (fl));
fl 418 kern/kern_descrip.c if (fl.l_whence == SEEK_CUR) {
fl 419 kern/kern_descrip.c if (fl.l_start == 0 && fl.l_len < 0) {
fl 421 kern/kern_descrip.c fl.l_len = -fl.l_len;
fl 422 kern/kern_descrip.c fl.l_start = fp->f_offset - fl.l_len;
fl 424 kern/kern_descrip.c fl.l_start += fp->f_offset;
fl 426 kern/kern_descrip.c switch (fl.l_type) {
fl 434 kern/kern_descrip.c error = (VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg));
fl 443 kern/kern_descrip.c error = (VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg));
fl 447 kern/kern_descrip.c error = (VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &fl,
fl 463 kern/kern_descrip.c error = copyin((caddr_t)SCARG(uap, arg), (caddr_t)&fl,
fl 464 kern/kern_descrip.c sizeof (fl));
fl 467 kern/kern_descrip.c if (fl.l_whence == SEEK_CUR) {
fl 468 kern/kern_descrip.c if (fl.l_start == 0 && fl.l_len < 0) {
fl 470 kern/kern_descrip.c fl.l_len = -fl.l_len;
fl 471 kern/kern_descrip.c fl.l_start = fp->f_offset - fl.l_len;
fl 473 kern/kern_descrip.c fl.l_start += fp->f_offset;
fl 475 kern/kern_descrip.c if (fl.l_type != F_RDLCK &&
fl 476 kern/kern_descrip.c fl.l_type != F_WRLCK &&
fl 477 kern/kern_descrip.c fl.l_type != F_UNLCK &&
fl 478 kern/kern_descrip.c fl.l_type != 0) {
fl 482 kern/kern_descrip.c error = VOP_ADVLOCK(vp, (caddr_t)p, F_GETLK, &fl, F_POSIX);
fl 485 kern/kern_descrip.c error = (copyout((caddr_t)&fl, (caddr_t)SCARG(uap, arg),
fl 486 kern/kern_descrip.c sizeof (fl)));
fl 133 kern/vfs_lockf.c struct flock *fl, int flags)
fl 143 kern/vfs_lockf.c switch (fl->l_whence) {
fl 151 kern/vfs_lockf.c start = fl->l_start;
fl 155 kern/vfs_lockf.c start = size + fl->l_start;
fl 163 kern/vfs_lockf.c if (fl->l_len == 0)
fl 166 kern/vfs_lockf.c end = start + fl->l_len - 1;
fl 176 kern/vfs_lockf.c fl->l_type = F_UNLCK;
fl 191 kern/vfs_lockf.c lock->lf_type = fl->l_type;
fl 209 kern/vfs_lockf.c error = lf_getlock(lock, fl);
fl 530 kern/vfs_lockf.c lf_getlock(struct lockf *lock, struct flock *fl)
fl 540 kern/vfs_lockf.c fl->l_type = block->lf_type;
fl 541 kern/vfs_lockf.c fl->l_whence = SEEK_SET;
fl 542 kern/vfs_lockf.c fl->l_start = block->lf_start;
fl 544 kern/vfs_lockf.c fl->l_len = 0;
fl 546 kern/vfs_lockf.c fl->l_len = block->lf_end - block->lf_start + 1;
fl 548 kern/vfs_lockf.c fl->l_pid = ((struct proc *)(block->lf_id))->p_pid;
fl 550 kern/vfs_lockf.c fl->l_pid = -1;
fl 552 kern/vfs_lockf.c fl->l_type = F_UNLCK;
fl 1024 kern/vnode_if.c int VOP_ADVLOCK(struct vnode *vp, void *id, int op, struct flock *fl, int flags)
fl 1031 kern/vnode_if.c a.a_fl = fl;
fl 109 lib/libsa/alloc.c struct fl {
fl 111 lib/libsa/alloc.c struct fl *next;
fl 112 lib/libsa/alloc.c } *freelist = (struct fl *)0;
fl 124 lib/libsa/alloc.c struct fl **f = &freelist, **bestf = NULL;
fl 136 lib/libsa/alloc.c while (*f != (struct fl *)0 && (*f)->size < size)
fl 139 lib/libsa/alloc.c failed = (*bestf == (struct fl *)0);
fl 168 lib/libsa/alloc.c if (size < ALIGN(sizeof (struct fl *)))
fl 169 lib/libsa/alloc.c size = ALIGN(sizeof (struct fl *));
fl 201 lib/libsa/alloc.c struct fl *f = (struct fl *)((char *)ptr -
fl 2639 nfs/nfs_serv.c struct flrep fl;
fl 2641 nfs/nfs_serv.c fhandle_t *fhp, *nfhp = (fhandle_t *)fl.fl_nfh;
fl 2852 nfs/nfs_serv.c fp = (struct nfs_fattr *)&fl.fl_fattr;
fl 2854 nfs/nfs_serv.c fl.fl_fhsize = txdr_unsigned(NFSX_V3FH);
fl 2855 nfs/nfs_serv.c fl.fl_fhok = nfs_true;
fl 2856 nfs/nfs_serv.c fl.fl_postopok = nfs_true;
fl 2857 nfs/nfs_serv.c fl.fl_off.nfsuquad[0] = 0;
fl 2858 nfs/nfs_serv.c fl.fl_off.nfsuquad[1] = txdr_unsigned(*cookiep);
fl 2896 nfs/nfs_serv.c cp = (caddr_t)&fl;
fl 3757 uvm/uvm_map.c int fl = uvm_page_lookup_freelist(pg);
fl 3758 uvm/uvm_map.c pgl = &uvm.page_free[fl].pgfl_queues[((pg)->pg_flags & PG_ZERO) ?