Searched refs:vp2 (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/sys/kern/
H A Dvfs_hash.c149 struct vnode *vp2; local
155 LIST_FOREACH(vp2,
157 if (vp2->v_hash != hash)
159 if (vp2->v_mount != vp->v_mount)
161 if (fn != NULL && fn(vp2, arg))
163 vhold(vp2);
165 error = vget(vp2, flags | LK_VNHELD, td);
173 *vpp = vp2;
176 if (vp2 == NULL)
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_mmap.c103 testloan(void *vp, void *vp2, char pat, int docheck) argument
139 (void)memset(vp2, pat, BUFSIZE);
248 char *vp, *vp2; local
262 vp2 = vp;
264 testloan(vp, vp2, 'A', 0);
265 testloan(vp, vp2, 'B', 1);
272 vp2 = mmap(NULL, BUFSIZE, PROT_READ | PROT_WRITE,
276 ATF_REQUIRE(vp2 != MAP_FAILED);
278 testloan(vp, vp2, 'E', 1);
281 ATF_REQUIRE(munmap(vp2, BUFSIZ
[all...]
/freebsd-11-stable/usr.bin/mail/
H A Dcmd3.c401 struct var *vp, *vp2; local
407 if ((vp2 = lookup(*ap)) == NULL) {
417 if (vp2 == variables[h]) {
419 vfree(vp2->v_name);
420 vfree(vp2->v_value);
421 (void)free(vp2);
424 for (vp = variables[h]; vp->v_link != vp2; vp = vp->v_link)
426 vp->v_link = vp2->v_link;
427 vfree(vp2->v_name);
428 vfree(vp2
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Ddba.c313 compare_names(const void *vp1, const void *vp2) argument
319 cp2 = *(const char * const *)vp2;
325 compare_strings(const void *vp1, const void *vp2) argument
330 cp2 = *(const char * const *)vp2;
501 compare_entries(const void *vp1, const void *vp2) argument
506 ep2 = *(const struct macro_entry * const *)vp2;
H A Dmansearch.c396 manpage_compare(const void *vp1, const void *vp2) argument
404 mp2 = vp2;
/freebsd-11-stable/sys/fs/fuse/
H A Dfuse_node.c180 struct vnode *vp2; local
215 td, &vp2, fuse_vnode_cmp, &nodeid);
218 if (vp2 != NULL) {
219 *vpp = vp2;
/freebsd-11-stable/sys/fs/fdescfs/
H A Dfdesc_vnops.c158 struct vnode *vp, *vp2; local
229 vp2 = fd2->fd_vnode;
230 VI_LOCK(vp2);
232 error = vget(vp2, LK_EXCLUSIVE | LK_INTERLOCK, td);
238 vp2 = NULLVP;
239 *vpp = vp2;
/freebsd-11-stable/sys/fs/smbfs/
H A Dsmbfs_node.c109 struct vnode *vp, *vp2; local
219 td, &vp2, smbfs_vnode_cmp, &sc);
222 if (vp2 != NULL)
223 *vpp = vp2;
/freebsd-11-stable/sys/fs/devfs/
H A Ddevfs_vnops.c1456 struct vnode *vp = ap->a_vp, *vp2; local
1480 vp2 = NULL;
1486 vp2 = de->de_vnode;
1487 if (vp2 != NULL) {
1489 VI_LOCK(vp2);
1491 if (vget(vp2, LK_EXCLUSIVE | LK_INTERLOCK,
1494 vhold(vp2);
1495 vgone(vp2);
1496 vdrop(vp2);
1497 vput(vp2);
[all...]
/freebsd-11-stable/sys/vm/
H A Dswap_pager.c2734 struct vnode *vp2; local
2738 vp2 = sp->sw_id;
2739 vhold(vp2);
2743 bufobj_wref(&vp2->v_bufobj);
2745 if (bp->b_bufobj != &vp2->v_bufobj)
2746 bp->b_bufobj = &vp2->v_bufobj;
2747 bp->b_vp = vp2;
/freebsd-11-stable/contrib/tcsh/
H A Dsh.hist.c1127 Char *vp2 = *vp; local
1129 while (*++vp2)
1130 switch (*vp2) {
/freebsd-11-stable/sbin/ipfw/
H A Ddummynet.c847 compare_points(const void *vp1, const void *vp2) argument
850 const struct point *p2 = vp2;
/freebsd-11-stable/contrib/gcc/
H A Dvar-tracking.c1286 variable_part_different_p (variable_part *vp1, variable_part *vp2) argument
1292 for (lc2 = vp2->loc_chain; lc2; lc2 = lc2->next)

Completed in 242 milliseconds