Lines Matching refs:nm

1923 nfs3_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, struct pathname *pnp,
1976 error = nfs3lookup(dvp, nm, vpp, pnp, flags, rdir, cr, 0);
2008 nfs3lookup(vnode_t *dvp, char *nm, vnode_t **vpp, struct pathname *pnp,
2020 if (*nm == '\0') {
2047 if (strcmp(nm, ".") == 0) {
2067 error = nfs3lookup_dnlc(dvp, nm, vpp, cr);
2072 error = nfs3lookup_otw(dvp, nm, vpp, cr, rfscall_flags);
2078 nfs3lookup_dnlc(vnode_t *dvp, char *nm, vnode_t **vpp, cred_t *cr)
2083 ASSERT(*nm != '\0');
2098 vp = dnlc_lookup(dvp, nm);
2107 vp = dnlc_lookup(dvp, nm);
2142 nfs3lookup_otw(vnode_t *dvp, char *nm, vnode_t **vpp, cred_t *cr,
2155 ASSERT(*nm != '\0');
2159 setdiropargs3(&args.what, nm, dvp);
2189 dnlc_enter(dvp, nm, DNLC_NO_VNODE);
2195 dvp->v_vfsp, t, cr, VTOR(dvp)->r_path, nm);
2198 dvp->v_vfsp, t, cr, VTOR(dvp)->r_path, nm);
2211 dnlc_update(dvp, nm, vp);
2224 nfs3_create(vnode_t *dvp, char *nm, struct vattr *va, enum vcexcl exclusive,
2253 if (*nm == '\0') {
2262 } else if (strcmp(nm, ".") == 0) {
2276 error = nfs3lookup_otw(dvp, nm, &vp, cr, 0);
2331 dnlc_remove(dvp, nm);
2351 error = nfs3create(dvp, nm, &vattr, exclusive, mode, vpp, cr,
2391 error = nfs3mknod(dvp, nm, &vattr, exclusive, mode, vpp, cr);
2398 nfs3create(vnode_t *dvp, char *nm, struct vattr *va, enum vcexcl exclusive,
2413 setdiropargs3(&args.where, nm, dvp);
2497 error = nfs3lookup(dvp, nm, &vp, NULL, 0, NULL, cr, 0);
2533 nm, cr, NULL, 0);
2553 dnlc_update(dvp, nm, vp);
2610 (void) nfs3_remove(dvp, nm, cr, NULL, 0);
2716 nfs3mknod(vnode_t *dvp, char *nm, struct vattr *va, enum vcexcl exclusive,
2731 setdiropargs3(&args.where, nm, dvp);
2747 setdiropargs3(&args.where, nm, dvp);
2782 error = nfs3lookup(dvp, nm, &vp, NULL, 0, NULL, cr, 0);
2804 dnlc_update(dvp, nm, vp);
2834 nfs3_remove(vnode_t *dvp, char *nm, cred_t *cr, caller_context_t *ct, int flags)
2852 error = nfs3lookup(dvp, nm, &vp, NULL, 0, NULL, cr, 0);
2868 dnlc_remove(dvp, nm);
2885 (rp->r_unldvp == NULL || strcmp(nm, rp->r_unlname) == 0)) {
2888 error = nfs3rename(dvp, nm, dvp, tmpname, cr, ct);
2926 setdiropargs3(&args.object, nm, dvp);
2964 vnevent_remove(vp, dvp, nm, ct);
3375 nfs3_mkdir(vnode_t *dvp, char *nm, struct vattr *va, vnode_t **vpp, cred_t *cr,
3389 setdiropargs3(&args.where, nm, dvp);
3413 dnlc_remove(dvp, nm);
3437 error = nfs3lookup(dvp, nm, &vp, NULL, 0, NULL, cr, 0);
3461 dnlc_update(dvp, nm, vp);
3480 nfs3_rmdir(vnode_t *dvp, char *nm, vnode_t *cdir, cred_t *cr,
3500 error = nfs3lookup(dvp, nm, &vp, NULL, 0, NULL, cr, 0);
3512 setdiropargs3(&args.object, nm, dvp);
3518 dnlc_remove(dvp, nm);
3574 vnevent_rmdir(vp, dvp, nm, ct);