Home
last modified time | relevance | path

Searched refs:flp (Results 1 – 5 of 5) sorted by relevance

/freebsd/lib/libc/gen/
H A Dtelldir.c51 struct ddloc_mem *lp, *flp; in telldir() local
70 flp = NULL; in telldir()
73 if (flp == NULL) in telldir()
74 flp = lp; in telldir()
77 } else if (flp != NULL) { in telldir()
92 if (flp != NULL) in telldir()
93 LIST_INSERT_BEFORE(flp, lp, loc_lqe); in telldir()
/freebsd/sys/fs/nfsclient/
H A Dnfs_clrpcops.c6029 struct nfsclflayout *flp; in nfsrpc_getlayout() local
6042 * on it, iff flp != NULL or a lock (exclusive lock) on it iff in nfsrpc_getlayout()
6043 * flp == NULL. in nfsrpc_getlayout()
6046 off, rw, &flp, &recalled); in nfsrpc_getlayout()
6048 if (lyp == NULL || flp == NULL) { in nfsrpc_getlayout()
6634 struct nfsclflayout *flp, *nflp, *rflp; in nfscl_findlayoutforio() local
6642 flp = LIST_FIRST(&lyp->nfsly_flayread); in nfscl_findlayoutforio()
6644 flp = LIST_FIRST(&lyp->nfsly_flayrw); in nfscl_findlayoutforio()
6645 while (flp != NULL) { in nfscl_findlayoutforio()
6646 nflp = LIST_NEXT(flp, nfsfl_lis in nfscl_findlayoutforio()
6673 nfscl_doflayoutio(vnode_t vp,struct uio * uiop,int * iomode,int * must_commit,int * eofp,nfsv4stateid_t * stateidp,int rwflag,struct nfscldevinfo * dp,struct nfscllayout * lyp,struct nfsclflayout * flp,uint64_t off,uint64_t len,int docommit,struct ucred * cred,NFSPROC_T * p) nfscl_doflayoutio() argument
6777 nfscl_dofflayoutio(vnode_t vp,struct uio * uiop,int * iomode,int * must_commit,int * eofp,nfsv4stateid_t * stateidp,int rwflag,struct nfscldevinfo * dp,struct nfscllayout * lyp,struct nfsclflayout * flp,uint64_t off,uint64_t len,int mirror,int docommit,struct mbuf * mp,struct nfsclwritedsdorpc * drpc,struct ucred * cred,NFSPROC_T * p) nfscl_dofflayoutio() argument
7821 struct nfsclflayout *flp, *prevflp, *tflp; nfsrv_parselayoutget() local
8155 struct nfsclflayout *flp; nfsrpc_getopenlayout() local
[all...]
H A Dnfs_clstate.c5289 struct nfsclflayout *flp; in nfscl_layout() local
5370 flp = LIST_FIRST(fhlp); in nfscl_layout()
5371 if (flp != NULL) { in nfscl_layout()
5372 if (flp->nfsfl_iomode == NFSLAYOUTIOMODE_READ) in nfscl_layout()
5633 struct nfsclflayout *flp, *nflp, *prevflp, *tflp; in nfscl_mergeflayouts() local
5635 flp = LIST_FIRST(fhlp); in nfscl_mergeflayouts()
5638 while (flp != NULL && flp->nfsfl_off < nflp->nfsfl_off) { in nfscl_mergeflayouts()
5639 prevflp = flp; in nfscl_mergeflayouts()
5640 flp = LIST_NEXT(flp, nfsfl_list); in nfscl_mergeflayouts()
5656 struct nfsclflayout *flp) in nfscl_adddevinfo() argument
[all …]
/freebsd/sys/kern/
H A Dkern_descrip.c487 struct flock *flp; in kern_fcntl() local
629 flp = (struct flock *)arg; in kern_fcntl()
630 if ((flg & F_REMOTE) != 0 && flp->l_sysid == 0) { in kern_fcntl()
644 if (flp->l_whence == SEEK_CUR) { in kern_fcntl()
647 (flp->l_start > 0 && in kern_fcntl()
648 foffset > OFF_MAX - flp->l_start)) { in kern_fcntl()
653 flp->l_start += foffset; in kern_fcntl()
657 switch (flp->l_type) { in kern_fcntl()
669 flp, flg); in kern_fcntl()
682 flp, fl in kern_fcntl()
[all...]
/freebsd/usr.bin/top/
H A Dmachine.c660 get_io_stats(const struct kinfo_proc *pp, long *inp, long *oup, long *flp, in get_io_stats() argument
674 *flp = RU(pp)->ru_majflt - RU(oldp)->ru_majflt; in get_io_stats()