Home
last modified time | relevance | path

Searched refs:vtab (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/cmd/prtvtoc/
H A Dprtvtoc.c245 struct vfstab vtab; in getmntpt() local
297 while (getvfsent(file, &vtab) == 0) { in getmntpt()
298 item = vtab.vfs_special; in getmntpt()
299 if ((item == NULL) || (vtab.vfs_mountp == NULL)) in getmntpt()
328 list[parttn(minor(sb.st_rdev))] = safe_strdup(vtab.vfs_mountp); in getmntpt()
/titanic_41/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c519 static struct sdev_vop_table vtab[] = variable
576 for (i = 0; vtab[i].vt_name; i++) { in sdev_match()
577 if (strcmp(vtab[i].vt_name, path) == 0) in sdev_match()
578 return (&vtab[i]); in sdev_match()
579 if (vtab[i].vt_flags & SDEV_SUBDIR) { in sdev_match()
580 vlen = strlen(vtab[i].vt_name); in sdev_match()
581 if ((strncmp(vtab[i].vt_name, path, in sdev_match()
583 return (&vtab[i]); in sdev_match()
656 for (i = 0; vtab[i].vt_name; i++) { in sdev_set_no_negcache()
657 if (strcmp(vtab[i].vt_name, path) == 0) { in sdev_set_no_negcache()
[all …]
/titanic_41/usr/src/cmd/fs.d/
H A Ddf.c1751 struct vfstab vtab; in find_fstype() local
1757 status = getvfsspec(fp, &vtab, special); in find_fstype()
1763 if (F_option && ! EQ(FSType, vtab.vfs_fstype)) in find_fstype()
1765 "warning: %s is of type %s", special, vtab.vfs_fstype); in find_fstype()
1766 return (new_string(vtab.vfs_fstype)); in find_fstype()