Lines Matching refs:vp1
110 vnode_t *vp1, *vp2; in pipe() local
125 makepipe(&vp1, &vp2); in pipe()
132 if (error = falloc(vp1, FWRITE|FREAD, &fp1, &fd1)) { in pipe()
133 VN_RELE(vp1); in pipe()
144 if (error = fifo_stropen(&vp1, FWRITE|FREAD, fp1->f_cred, 0, 0)) in pipe()
148 (void) VOP_CLOSE(vp1, FWRITE|FREAD, 1, (offset_t)0, in pipe()
153 strmate(vp1, vp2); in pipe()
155 VTOF(vp1)->fn_ino = VTOF(vp2)->fn_ino = fifogetid(); in pipe()
165 if (error = VOP_SETFL(vp1, flag1, iflags, fp1->f_cred, NULL)) { in pipe()
205 (void) VOP_CLOSE(vp1, FWRITE|FREAD, 1, (offset_t)0, fp1->f_cred, NULL); in pipe()
213 VN_RELE(vp1); in pipe()