Lines Matching refs:namep

117 	char *namep, struct ud_inode **ipp, struct cred *cr, int32_t skipdnlc)  in ud_dirlook()  argument
155 if (*namep == '\0') { in ud_dirlook()
160 namelen = strlen(namep); in ud_dirlook()
162 (namep[0] == '.') && (namep[1] == '\0')) { in ud_dirlook()
166 dnlc_enter(dvp, namep, ITOV(*ipp)); in ud_dirlook()
170 if ((!skipdnlc) && (vp = dnlc_lookup(dvp, namep))) { in ud_dirlook()
230 (strncmp(namep, (caddr_t)fname, in ud_dirlook()
299 dnlc_enter(dvp, namep, in ud_dirlook()
328 char *namep, in ud_direnter() argument
349 for (s = namep, namlen = 0; *s; s++, namlen++) { in ud_direnter()
365 if (namep[0] == '.' && in ud_direnter()
366 (namlen == 1 || (namlen == 2 && namep[1] == '.'))) { in ud_direnter()
375 if (err = ud_dirlook(tdp, namep, ipp, cr, 0)) { in ud_direnter()
475 namep, namlen, &slot, &tip, buf, cr)) { in ud_direnter()
491 namep, buf, &slot, cr); in ud_direnter()
521 if (err = ud_diraddentry(tdp, namep, op, in ud_direnter()
562 namep, ctp); in ud_direnter()
602 char *namep, in ud_dirremove() argument
623 namelen = (int)strlen(namep); in ud_dirremove()
632 if (namep[0] == '.') { in ud_dirremove()
635 } else if (namelen == 2 && namep[1] == '.') { in ud_dirremove()
669 if (err = ud_dircheckforname(dp, namep, namelen, &slot, &ip, in ud_dirremove()
760 dnlc_remove(ITOV(dp), namep); in ud_dirremove()
863 vnevent_remove(ITOV(ip), ITOV(dp), namep, ctp); in ud_dirremove()
865 vnevent_rmdir(ITOV(ip), ITOV(dp), namep, ctp); in ud_dirremove()
877 char *namep, int32_t namelen, struct slot *slotp, in ud_dircheckforname() argument
907 (uint8_t *)namep, dname)) != 0) { in ud_dircheckforname()
926 (strncmp(namep, (caddr_t)dname, namelen) == 0)) || in ud_dircheckforname()
928 (namep[0] == '.' && in ud_dircheckforname()
930 (namelen == 2 && namep[1] == '.'))))) { in ud_dircheckforname()
934 (namelen == 1) && (namep[0] == '.')) { in ud_dircheckforname()
975 (strncmp(namep, (caddr_t)dname, in ud_dircheckforname()
1277 ud_diraddentry(struct ud_inode *tdp, char *namep, in ud_diraddentry() argument
1328 (uint8_t *)namep, fid->fid_spec)) == 0) { in ud_diraddentry()
1441 struct ud_inode *tdp, struct ud_inode *tip, char *namep, in ud_dirrename() argument
1528 dnlc_remove(ITOV(tdp), namep); in ud_dirrename()
1531 dnlc_enter(ITOV(tdp), namep, ITOV(sip)); in ud_dirrename()