Lines Matching defs:vpp
68 xattr_file_open(vnode_t **vpp, int flags, cred_t *cr, caller_context_t *ct)
70 xattr_file_t *np = (*vpp)->v_data;
911 xattr_dir_open(vnode_t **vpp, int flags, cred_t *cr, caller_context_t *ct)
922 xattr_dir_close(vnode_t *vpp, int flags, int count, offset_t off, cred_t *cr,
1055 int mode, vnode_t **vpp, cred_t *cr, int flag, caller_context_t *ct,
1061 *vpp = NULL;
1067 return (gfs_dir_lookup(dvp, name, vpp, cr, 0, NULL, NULL));
1073 error = VOP_CREATE(pvp, name, vap, excl, mode, vpp, cr, flag,
1422 xattr_lookup_cb(vnode_t *vp, const char *nm, vnode_t **vpp, ino64_t *inop,
1429 *vpp = NULL;
1447 error = VOP_LOOKUP(pvp, (char *)nm, vpp, &pn, flags, rootvp,
1474 xattr_dir_lookup(vnode_t *dvp, vnode_t **vpp, int flags, cred_t *cr)
1478 *vpp = NULL;
1495 *vpp = dvp->v_xattrdir;
1496 VN_HOLD(*vpp);
1528 error = VOP_LOOKUP(dvp, nm, vpp, &pn,
1539 *vpp = gfs_dir_create(
1547 * just call VN_RELE(*vpp), because the vnode
1550 gfs_dir_t *dp = (*vpp)->v_data;
1552 ASSERT((*vpp)->v_count == 1);
1553 vn_free(*vpp);
1563 * from *vpp, and then a VN_HOLD(dvp) for the new
1567 *vpp = dvp->v_xattrdir;
1568 VN_HOLD(*vpp);
1570 (*vpp)->v_flag |= (V_XATTRDIR|V_SYSATTR);
1571 dvp->v_xattrdir = *vpp;
1580 xattr_dir_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp)
1589 *vpp = NULL;
1625 *vpp = dvp;
1642 error = VOP_LOOKUP(dvp, nm, vpp, &pn, 0, rootvp, CRED(), NULL,