/titanic_44/usr/src/lib/libbc/libc/gen/common/ |
H A D | fstab.c | 34 static struct fstab *pfs; 38 fstabscan(struct fstab *fs) in fstabscan() 93 struct fstab * 99 return ((struct fstab *)0); in getfsent() 101 pfs = (struct fstab *)malloc(sizeof (struct fstab)); in getfsent() 107 return ((struct fstab *)0); in getfsent() 111 struct fstab * 114 struct fstab *fsp; in getfsspec() 117 return ((struct fstab *)0); in getfsspec() 121 return ((struct fstab *)0); in getfsspec() [all …]
|
/titanic_44/usr/src/lib/libbc/inc/include/ |
H A D | fstab.h | 48 struct fstab{ struct 56 struct fstab *getfsent(); argument 57 struct fstab *getfsspec(); 58 struct fstab *getfsfile(); 59 struct fstab *getfstype();
|
/titanic_44/usr/src/cmd/fs.d/ufs/quot/ |
H A D | quot.c | 192 FILE *fstab; in quotall() local 198 fstab = fopen(MNTTAB, "r"); in quotall() 199 if (fstab == NULL) { in quotall() 203 while (getmntent(fstab, &mntp) == NULL) { in quotall() 220 (void) fclose(fstab); in quotall() 226 FILE *fstab; in check() local 250 fstab = fopen(MNTTAB, "r"); in check() 251 if (fstab == NULL) { in check() 255 while (getmntent(fstab, &mntp) == NULL) { in check() 469 FILE *fstab; in getdev() local [all …]
|
/titanic_44/usr/src/cmd/hal/tools/ |
H A D | hal-storage-shared.c | 162 struct fstab *fstab; in fstab_next() local 164 fstab = getfsent (); in fstab_next() 167 if (mount_point != NULL && fstab != NULL) { in fstab_next() 168 *mount_point = fstab->fs_file; in fstab_next() 171 return fstab ? fstab->fs_spec : NULL; in fstab_next()
|
/titanic_44/usr/src/cmd/fs.d/ufs/repquota/ |
H A D | repquota.c | 439 FILE *fstab; in quotactl() local 449 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl() 455 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl() 472 (void) fclose(fstab); in quotactl()
|
/titanic_44/usr/src/cmd/zoneadm/ |
H A D | zoneadm.c | 2196 verify_fs_special(struct zone_fstab *fstab) in verify_fs_special() argument 2208 if (strcmp(fstab->zone_fs_type, MNTTYPE_ZFS) == 0) in verify_fs_special() 2209 return (verify_fs_zfs(fstab)); in verify_fs_special() 2211 if (stat64(fstab->zone_fs_special, &st) != 0) { in verify_fs_special() 2213 "%s: could not access %s: %s\n"), fstab->zone_fs_dir, in verify_fs_special() 2214 fstab->zone_fs_special, strerror(errno)); in verify_fs_special() 2227 fstab->zone_fs_special); in verify_fs_special() 2249 struct zone_fstab fstab; in verify_filesystems() local 2263 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in verify_filesystems() 2264 if (!zonecfg_valid_fs_type(fstab.zone_fs_type)) { in verify_filesystems() [all …]
|
H A D | zfs.c | 1245 verify_fs_zfs(struct zone_fstab *fstab) in verify_fs_zfs() argument 1250 if ((zhp = zfs_open(g_zfs, fstab->zone_fs_special, in verify_fs_zfs() 1254 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs() 1261 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs() 1270 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs()
|
H A D | zoneadm.h | 130 extern int verify_fs_zfs(struct zone_fstab *fstab);
|
/titanic_44/usr/src/cmd/fs.d/nfs/rquotad/ |
H A D | rpc.rquotad.c | 419 FILE *fstab; local 428 if ((fstab = fopen(MNTTAB, "r")) == NULL) { 433 while ((status = getmntent(fstab, &mntp)) == NULL) { 444 fclose(fstab);
|
/titanic_44/usr/src/cmd/prtvtoc/ |
H A D | prtvtoc.c | 102 static char *fstab = VFSTAB; /* Fstab pathname */ variable 127 fstab = optarg; in main() 288 if ((file = fopen(fstab, "r")) == NULL) { in getmntpt() 289 (void) warn(fstab, strerror(errno)); in getmntpt()
|
/titanic_44/usr/src/cmd/zonecfg/ |
H A D | zonecfg.c | 1794 struct zone_fstab fstab; in export_func() local 1928 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in export_func() 1933 export_prop(of, PT_DIR, fstab.zone_fs_dir); in export_func() 1934 export_prop(of, PT_SPECIAL, fstab.zone_fs_special); in export_func() 1935 export_prop(of, PT_RAW, fstab.zone_fs_raw); in export_func() 1936 export_prop(of, PT_TYPE, fstab.zone_fs_type); in export_func() 1937 for (optptr = fstab.zone_fs_options; optptr != NULL; in export_func() 1956 zonecfg_free_fs_option_list(fstab.zone_fs_options); in export_func() 2655 fill_in_fstab(cmd_t *cmd, struct zone_fstab *fstab, boolean_t fill_in_only) in fill_in_fstab() argument 2663 bzero(fstab, sizeof (*fstab)); in fill_in_fstab() [all …]
|
/titanic_44/usr/src/cmd/fs.d/ufs/edquota/ |
H A D | edquota.c | 819 FILE *fstab; in quotactl() local 838 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl() 844 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl() 872 (void) fclose(fstab); in quotactl()
|
/titanic_44/usr/src/cmd/fs.d/ufs/quotacheck/ |
H A D | quotacheck.c | 708 FILE *fstab; in quotactl() local 718 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl() 724 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl() 737 fclose(fstab); in quotactl()
|
/titanic_44/usr/src/cmd/fs.d/ufs/quota/ |
H A D | quota.c | 671 FILE *fstab; in quotactl() local 681 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl() 687 while ((status = getmntent(fstab, &mnt)) == NULL) { in quotactl() 703 fclose(fstab); in quotactl()
|
/titanic_44/usr/src/lib/libxcurses/h/posix/ |
H A D | mkslocal.h | 813 #define M_FSALL "/etc/fstab"
|
/titanic_44/usr/src/cmd/zoneadmd/ |
H A D | vplat.c | 1606 struct zone_fstab *tmp_ptr, *fs_ptr, *fsp, fstab; in mount_filesystems_fsent() local 1616 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in mount_filesystems_fsent() 1623 strcmp(fstab.zone_fs_type, MNTTYPE_ZFS) == 0) in mount_filesystems_fsent() 1640 fstab.zone_fs_dir, sizeof (fsp->zone_fs_dir)); in mount_filesystems_fsent() 1641 (void) strlcpy(fsp->zone_fs_raw, fstab.zone_fs_raw, in mount_filesystems_fsent() 1643 (void) strlcpy(fsp->zone_fs_type, fstab.zone_fs_type, in mount_filesystems_fsent() 1645 fsp->zone_fs_options = fstab.zone_fs_options; in mount_filesystems_fsent() 1662 (void) strlcat(fsp->zone_fs_special, fstab.zone_fs_special, in mount_filesystems_fsent()
|
/titanic_44/usr/src/lib/libxcurses/h/ |
H A D | mks.h | 244 #define M_FSALL M_ETCDIR(fstab)
|
/titanic_44/usr/src/lib/libbc/sparc/ |
H A D | Makefile | 62 fstab.o ftok.o ftw.o getauid.o getauditflags.o \
|
/titanic_44/usr/src/lib/libast/common/ |
H A D | RELEASE | 385 05-02-11 port/mnt.c: handle lynxos MOUNTED=/etc/fstab 1043 00-12-25 mnt.c: handle " and ' quoting for fstab
|
/titanic_44/usr/src/grub/grub-0.97/docs/ |
H A D | grub.info-2 | 1243 grub> cat /etc/fstab
|
H A D | grub.texi | 2732 grub> @kbd{cat /etc/fstab}
|
H A D | grub.info | 2547 grub> cat /etc/fstab
|
/titanic_44/usr/src/grub/grub-0.97/ |
H A D | ChangeLog | 1723 problem on Linux with devfs and old device names in /etc/fstab.
|