Home | History | Annotate | Download | only in gio

Lines Matching refs:fstab

178 #include <fstab.h>
664 * read the fstab.
679 return "/etc/fstab";
968 struct fstab *fstab = NULL;
1004 while ((fstab = getfsent ()) != NULL)
1006 if (strcmp (fstab->fs_vfstype, "swap") == 0)
1011 mount_entry->mount_path = g_strdup (fstab->fs_file);
1012 mount_entry->device_path = g_strdup (fstab->fs_spec);
1013 mount_entry->filesystem_type = g_strdup (fstab->fs_vfstype);
1015 if (strcmp (fstab->fs_type, "ro") == 0)
1022 if (stat (fstab->fs_file, &sb) == 0)