Home
last modified time | relevance | path

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

/titanic_44/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_44/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c514 static struct sdev_vop_table vtab[] = variable
571 for (i = 0; vtab[i].vt_name; i++) { in sdev_match()
572 if (strcmp(vtab[i].vt_name, path) == 0) in sdev_match()
573 return (&vtab[i]); in sdev_match()
574 if (vtab[i].vt_flags & SDEV_SUBDIR) { in sdev_match()
575 vlen = strlen(vtab[i].vt_name); in sdev_match()
576 if ((strncmp(vtab[i].vt_name, path, in sdev_match()
578 return (&vtab[i]); in sdev_match()
651 for (i = 0; vtab[i].vt_name; i++) { in sdev_set_no_negcache()
652 if (strcmp(vtab[i].vt_name, path) == 0) { in sdev_set_no_negcache()
[all …]
/titanic_44/usr/src/cmd/fs.d/
H A Ddf.c1690 struct vfstab vtab; in find_fstype() local
1696 status = getvfsspec(fp, &vtab, special); in find_fstype()
1702 if (F_option && ! EQ(FSType, vtab.vfs_fstype)) in find_fstype()
1704 "warning: %s is of type %s", special, vtab.vfs_fstype); in find_fstype()
1705 return (new_string(vtab.vfs_fstype)); in find_fstype()