Searched refs:flp (Results 1 - 10 of 10) sorted by relevance

/freebsd-10-stable/lib/libc/sys/
H A Dfcntl.c61 struct flock *flp; local
76 flp = (struct flock *) (uintptr_t) arg;
77 ofl.l_start = flp->l_start;
78 ofl.l_len = flp->l_len;
79 ofl.l_pid = flp->l_pid;
80 ofl.l_type = flp->l_type;
81 ofl.l_whence = flp->l_whence;
87 flp->l_start = ofl.l_start;
88 flp->l_len = ofl.l_len;
89 flp
[all...]
/freebsd-10-stable/sys/i386/ibcs2/
H A Dibcs2_fcntl.c79 cvt_flock2iflock(flp, iflp)
80 struct flock *flp;
83 switch (flp->l_type) {
94 iflp->l_whence = (short)flp->l_whence;
95 iflp->l_start = (ibcs2_off_t)flp->l_start;
96 iflp->l_len = (ibcs2_off_t)flp->l_len;
97 iflp->l_sysid = flp->l_sysid;
98 iflp->l_pid = (ibcs2_pid_t)flp->l_pid;
103 print_flock(struct flock *flp) argument
106 (int)flp
[all...]
/freebsd-10-stable/lib/libc/gen/
H A Dtelldir.c56 struct ddloc *lp, *flp; local
61 flp = NULL;
64 if (flp == NULL)
65 flp = lp;
68 } else if (flp != NULL) {
83 if (flp != NULL)
84 LIST_INSERT_BEFORE(flp, lp, loc_lqe);
/freebsd-10-stable/sys/compat/svr4/
H A Dsvr4_fcntl.c312 fd_truncate(td, fd, flp)
315 struct flock *flp;
348 switch (flp->l_whence) {
350 start = fp->f_offset + flp->l_start;
354 start = flp->l_start + length;
358 start = flp->l_start;
366 if (start + flp->l_len < length) {
/freebsd-10-stable/sys/fs/nfsclient/
H A Dnfs_clrpcops.c4792 struct nfsclflayout *flp, *prevflp, *tflp; local
4797 flp = NULL;
4854 flp = malloc(sizeof(*flp) + (fhcnt - 1) *
4858 flp = malloc(sizeof(*flp),
4860 flp->nfsfl_flags = 0;
4861 flp->nfsfl_fhcnt = 0;
4862 flp->nfsfl_devp = NULL;
4863 flp
5232 struct nfsclflayout *flp, *tflp; local
5659 struct nfsclflayout *flp, *nflp, *rflp; local
5696 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) argument
[all...]
H A Dnfs_clstate.c4792 struct nfsclflayout *flp; local
4866 flp = LIST_FIRST(fhlp);
4867 if (flp != NULL) {
4868 if (flp->nfsfl_iomode == NFSLAYOUTIOMODE_READ)
5056 struct nfsclflayout *flp, *nflp, *prevflp, *tflp; local
5058 flp = LIST_FIRST(fhlp);
5061 while (flp != NULL && flp->nfsfl_off < nflp->nfsfl_off) {
5062 prevflp = flp;
5063 flp
5078 nfscl_adddevinfo(struct nfsmount *nmp, struct nfscldevinfo *dip, struct nfsclflayout *flp) argument
5119 struct nfsclflayout *flp, *nflp; local
5142 nfscl_freeflayout(struct nfsclflayout *flp) argument
5258 struct nfsclflayout *flp; local
[all...]
/freebsd-10-stable/sys/kern/
H A Dkern_descrip.c487 struct flock *flp; local
632 flp = (struct flock *)arg;
633 if (flp->l_whence == SEEK_CUR) {
636 (flp->l_start > 0 &&
637 foffset > OFF_MAX - flp->l_start)) {
643 flp->l_start += foffset;
647 switch (flp->l_type) {
657 flp, flg);
668 flp, flg);
672 flp, fl
723 F_UNLCK, flp, F_POSIX); local
[all...]
/freebsd-10-stable/contrib/gcc/
H A Dgengtype.c1409 static void finish_root_table (struct flist *flp, const char *pfx,
2504 finish_root_table (struct flist *flp, const char *pfx, const char *lastname,
2509 for (fli2 = flp; fli2; fli2 = fli2->next)
2516 for (fli2 = flp; fli2; fli2 = fli2->next)
2542 for (fli2 = flp; fli2; fli2 = fli2->next)
2787 struct flist *flp = NULL;
2815 for (fli = flp; fli; fli = fli->next)
2822 fli->next = flp;
2825 flp = fli;
2859 for (fli = flp; fl
2501 finish_root_table(struct flist *flp, const char *pfx, const char *lastname, const char *tname, const char *name) argument
2784 struct flist *flp = NULL; local
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Ddwarf2read.c2826 struct fnfieldlist *flp; local
2852 flp = &fip->fnfieldlists[i];
2864 flp = &fip->fnfieldlists[fip->nfnfields];
2865 flp->name = fieldname;
2866 flp->length = 0;
2867 flp->head = NULL;
2876 new_fnfield->next = flp->head;
2877 flp->head = new_fnfield;
2878 flp->length++;
2964 struct fnfieldlist *flp; local
[all...]
/freebsd-10-stable/usr.bin/top/
H A Dmachine.c628 get_io_stats(struct kinfo_proc *pp, long *inp, long *oup, long *flp, argument
642 *flp = RU(pp)->ru_majflt - RU(oldp)->ru_majflt;

Completed in 185 milliseconds