HomeSort by: relevance | last modified time | path
    Searched defs:tvp (Results 1 - 25 of 78) sorted by relevancy

1 2 3 4

  /src/lib/libc/compat/gen/
compat_utime.c 64 struct timeval tv[2], *tvp; variable in typeref:struct:timeval[2]*
69 tvp = NULL;
74 tvp = tv;
76 return __utimes50(path, tvp);
compat_utime.c 64 struct timeval tv[2], *tvp; variable in typeref:struct:timeval[2]*
69 tvp = NULL;
74 tvp = tv;
76 return __utimes50(path, tvp);
  /src/lib/libc/gen/
utime.c 52 struct timeval tv[2], *tvp; local in function:utime
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
utime.c 52 struct timeval tv[2], *tvp; local in function:utime
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
  /src/sys/compat/common/
vfs_syscalls_50.c 205 struct timeval tv[2], *tvp; local in function:compat_50_do_sys_utimes
213 tvp = tv;
215 tvp = NULL;
216 return do_sys_utimes(l, vp, path, flag, tvp, UIO_SYSSPACE);
vfs_syscalls_50.c 205 struct timeval tv[2], *tvp; local in function:compat_50_do_sys_utimes
213 tvp = tv;
215 tvp = NULL;
216 return do_sys_utimes(l, vp, path, flag, tvp, UIO_SYSSPACE);
  /src/sys/compat/linux/common/
linux_misc_notalpha.c 218 struct timeval tv[2], *tvp; local in function:linux_sys_utime
227 tvp = tv;
229 tvp = NULL;
232 tvp, UIO_SYSSPACE);
linux_misc_notalpha.c 218 struct timeval tv[2], *tvp; local in function:linux_sys_utime
227 tvp = tv;
229 tvp = NULL;
232 tvp, UIO_SYSSPACE);
  /src/sys/miscfs/genfs/
genfs_rename.c 144 * . tvp (to vnode, or NULL), and
151 * . fdvp, fvp, tdvp, and tvp are referenced,
153 * . tdvp and tvp (if nonnull) are locked.
157 * . fdvp, fvp, tdvp, and tvp (if nonnull) are unreferenced, and
158 * . tdvp and tvp (if nonnull) are unlocked.
178 struct vnode *tvp = ap->a_tvp; local in function:genfs_insane_rename
193 KASSERT((tvp == NULL) || (VOP_ISLOCKED(tvp) == LK_EXCLUSIVE));
214 if ((tvp != NULL) && (tvp != tdvp)
554 struct vnode *fvp, *tvp; local in function:genfs_rename_enter_common
661 struct vnode *fvp, *tvp; local in function:genfs_rename_enter_separate
    [all...]
genfs_rename.c 144 * . tvp (to vnode, or NULL), and
151 * . fdvp, fvp, tdvp, and tvp are referenced,
153 * . tdvp and tvp (if nonnull) are locked.
157 * . fdvp, fvp, tdvp, and tvp (if nonnull) are unreferenced, and
158 * . tdvp and tvp (if nonnull) are unlocked.
178 struct vnode *tvp = ap->a_tvp; local in function:genfs_insane_rename
193 KASSERT((tvp == NULL) || (VOP_ISLOCKED(tvp) == LK_EXCLUSIVE));
214 if ((tvp != NULL) && (tvp != tdvp)
554 struct vnode *fvp, *tvp; local in function:genfs_rename_enter_common
661 struct vnode *fvp, *tvp; local in function:genfs_rename_enter_separate
    [all...]
  /src/sys/kern/
vfs_getcwd.c 252 struct vnode *tvp = uvp;
255 vput(tvp);
338 struct vnode *tvp; local in function:getcwd_common
345 tvp = lvp->v_mount->mnt_vnodecovered;
349 if (tvp == NULL) {
354 vref(tvp);
356 lvp = tvp;
vfs_getcwd.c 252 struct vnode *tvp = uvp;
255 vput(tvp);
338 struct vnode *tvp; local in function:getcwd_common
345 tvp = lvp->v_mount->mnt_vnodecovered;
349 if (tvp == NULL) {
354 vref(tvp);
356 lvp = tvp;
  /src/sys/compat/linux32/common/
linux32_time.c 218 struct timeval tv[2], *tvp; local in function:linux32_sys_utime
230 tvp = tv;
232 tvp = NULL;
236 tvp, UIO_SYSSPACE);
linux32_time.c 218 struct timeval tv[2], *tvp; local in function:linux32_sys_utime
230 tvp = tv;
232 tvp = NULL;
236 tvp, UIO_SYSSPACE);
  /src/sys/fs/unionfs/
unionfs_subr.c 799 struct vnode *tvp; local in function:unionfs_check_rmdir
863 lookuperr = VOP_LOOKUP(lvp, &tvp, &cn);
866 vput(tvp);
876 lookuperr = VOP_LOOKUP(uvp, &tvp, &cn);
879 vput(tvp);
unionfs_subr.c 799 struct vnode *tvp; local in function:unionfs_check_rmdir
863 lookuperr = VOP_LOOKUP(lvp, &tvp, &cn);
866 vput(tvp);
876 lookuperr = VOP_LOOKUP(uvp, &tvp, &cn);
879 vput(tvp);
  /src/sys/miscfs/umapfs/
umap_vnops.c 532 struct vnode *tvp; local in function:umap_rename
562 tvp = ap->a_tvp;
563 if (tvp) {
564 if (tvp->v_mount != vp->v_mount)
565 tvp = NULL;
567 vref(tvp);
570 if (tvp) {
572 VTOLAYER(tvp)->layer_flags |= LAYERFS_REMOVED;
573 vrele(tvp);
umap_vnops.c 532 struct vnode *tvp; local in function:umap_rename
562 tvp = ap->a_tvp;
563 if (tvp) {
564 if (tvp->v_mount != vp->v_mount)
565 tvp = NULL;
567 vref(tvp);
570 if (tvp) {
572 VTOLAYER(tvp)->layer_flags |= LAYERFS_REMOVED;
573 vrele(tvp);
  /src/usr.sbin/lpr/lpc/
cmds.c 924 struct timeval tvp[2]; local in function:touch
927 tvp[0].tv_sec = tvp[1].tv_sec = --mtime;
928 tvp[0].tv_usec = tvp[1].tv_usec = 0;
930 ret = utimes(q->q_name, tvp);
cmds.c 924 struct timeval tvp[2]; local in function:touch
927 tvp[0].tv_sec = tvp[1].tv_sec = --mtime;
928 tvp[0].tv_usec = tvp[1].tv_usec = 0;
930 ret = utimes(q->q_name, tvp);
  /src/usr.sbin/screenblank/
screenblank.c 95 struct timespec timo_on, timo_off, *tvp, tv; local in function:main
221 tvp = &timo_on;
267 tvp = &timo_off;
273 tvp = &timo_on;
277 tv = *tvp;
402 cvt_arg(char *arg, struct timespec *tvp)
431 tvp->tv_sec = seconds;
435 tvp->tv_nsec = nanoseconds;
screenblank.c 95 struct timespec timo_on, timo_off, *tvp, tv; local in function:main
221 tvp = &timo_on;
267 tvp = &timo_off;
273 tvp = &timo_on;
277 tv = *tvp;
402 cvt_arg(char *arg, struct timespec *tvp)
431 tvp->tv_sec = seconds;
435 tvp->tv_nsec = nanoseconds;
  /src/sys/ufs/ext2fs/
ext2fs_vnops.c 624 struct vnode *tvp; local in function:ext2fs_mkdir
638 error = ext2fs_makeinode(ap->a_vap, ap->a_dvp, &tvp, ap->a_cnp, 0);
643 ip = VTOI(tvp);
690 error = ufs_bufio(UIO_WRITE, tvp, (void *)&dirtemplate,
710 uvm_vnp_setsize(tvp, ext2fs_size(ip));
728 vput(tvp);
730 VOP_UNLOCK(tvp);
731 *ap->a_vpp = tvp;
989 struct vnode *tvp; local in function:ext2fs_makeinode
1001 error = vcache_new(dvp->v_mount, dvp, vap, cnp->cn_cred, NULL, &tvp);
    [all...]
ext2fs_vnops.c 624 struct vnode *tvp; local in function:ext2fs_mkdir
638 error = ext2fs_makeinode(ap->a_vap, ap->a_dvp, &tvp, ap->a_cnp, 0);
643 ip = VTOI(tvp);
690 error = ufs_bufio(UIO_WRITE, tvp, (void *)&dirtemplate,
710 uvm_vnp_setsize(tvp, ext2fs_size(ip));
728 vput(tvp);
730 VOP_UNLOCK(tvp);
731 *ap->a_vpp = tvp;
989 struct vnode *tvp; local in function:ext2fs_makeinode
1001 error = vcache_new(dvp->v_mount, dvp, vap, cnp->cn_cred, NULL, &tvp);
    [all...]
  /src/sys/fs/msdosfs/
msdosfs_rename.c 79 * . tvp (to vnode, or NULL), and
86 * . fdvp, fvp, tdvp, and tvp are referenced,
88 * . tdvp and tvp (if nonnull) are locked.
92 * . fdvp, fvp, tdvp, and tvp (if nonnull) are unreferenced, and
93 * . tdvp and tvp are unlocked.
110 struct vnode *tvp = ap->a_tvp; local in function:msdosfs_rename
125 KASSERT((tvp == NULL) || (VOP_ISLOCKED(tvp) == LK_EXCLUSIVE));
141 if ((tvp != NULL) && (tvp != tdvp)
    [all...]

Completed in 32 milliseconds

1 2 3 4