HomeSort by: relevance | last modified time | path
    Searched defs:fstype (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/sys/arch/i386/stand/lib/
biosdisk.h 33 int fstype; member in struct:biosdisk_partition
  /src/sys/arch/ews4800mips/stand/common/
diskutil.c 87 switch (fstype(i)) {
126 fstype(int partition) function
local.h 45 enum fstype { enum
63 int fstype(int);
  /src/tests/fs/vfs/
t_vfsops.c 54 const char *fstype = atf_tc_get_md_var(tc, "X-fs.mntname"); local
62 ATF_REQUIRE_STREQ(svb.f_fstypename, fstype);
  /src/external/cddl/osnet/sys/sys/
mount.h 51 char *fstype; member in struct:zfs_args
61 zmount(const char *spec, const char *dir, int mflag, char *fstype,
vfs.h 113 char *fstype; /* Unused */ member in struct:mounta
126 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
  /src/sys/arch/x68k/x68k/
disksubr.c 171 u_char fstype; local
182 fstype = FS_UNUSED;
186 fstype = FS_MSDOS;
189 fstype = FS_BSDFFS;
192 fstype = FS_BSDLFS;
195 fstype = FS_SWAP;
198 fstype = FS_SWAP;
201 fstype = FS_BSDFFS; /* XXX */
202 lp->d_partitions[part].p_fstype = fstype; /* XXX */
  /src/sys/stand/efiboot/
efiblock.h 59 uint8_t fstype; member in struct:efi_block_part_gpt
efiblock.c 365 uint8_t fstype; member in struct:__anon7513
381 uint8_t fstype = FS_UNUSED; local
389 fstype = gpt_guid_to_str[n].fstype;
392 if (fstype == FS_UNUSED)
399 bpart->gpt.fstype = fstype;
401 if (fstype == FS_RAID) {
524 uint8_t fstype = FS_UNUSED; local
527 fstype = bpart->disklabel.part.p_fstype
    [all...]
  /src/usr.sbin/fstyp/
hammer.c 51 static hammer_uuid_t fsid, fstype; local
69 memcpy(&fstype, &ondisk->vol_fstype, sizeof(fstype));
76 if (!uuid_equal(&ondisk->vol_fstype, &fstype, NULL))
hammer2.c 90 static uuid_t fsid, fstype; local
117 memcpy(&fstype, &voldata->fstype, sizeof(fstype));
127 if (!uuid_equal(&fstype, &voldata->fstype, NULL)) {
  /src/external/bsd/am-utils/dist/amd/
sun_map.h 70 char *fstype; /* filesystem type */ member in struct:sun_mountpt
79 char *fstype; /* filesystem type */ member in struct:sun_entry
  /src/sys/arch/sh3/sh3/
disksubr.c 226 uint16_t *start, *end, *fstype; local
232 fstype = (uint16_t *)&tdl.d_partitions[i].p_fstype;
233 *fstype = bswap16(*fstype);
  /src/lib/libperfuse/
perfuse.c 443 char *fstype; local
472 if ((fstype = malloc(len)) == NULL)
475 (void)sprintf(fstype, "perfuse|%s", ps->ps_filesystemtype);
477 if ((fstype = strdup("perfuse")) == NULL)
586 if ((pu = puffs_init(pops, source, fstype, ps, puffs_flags)) == NULL)
  /src/sys/arch/hppa/stand/xxboot/
readufs.h 72 } fstype; member in struct:ufs_info
119 #define ufs_get_inode(ino, di) ((ufs_info.fstype == UFSTYPE_FFS) ? \
  /src/sys/arch/macppc/stand/installboot/
installboot.h 71 struct ib_fs *fstype; /* file system details (see below) */ member in struct:__anon1626
  /src/sys/arch/macppc/stand/ofwboot/
ofdev.c 150 u_int8_t fstype; local
153 fstype = 0;
166 fstype = bzb->bzbType;
168 fstype = FS_BSDFFS;
172 fstype = FS_BSDFFS;
175 return fstype;
190 u_int8_t fstype; local
205 fstype = check_apm_root(pme, &clust);
207 if (fstype && (lastclust == -1 || clust < lastclust)) {
210 a_part->p_fstype = fstype;
    [all...]
  /src/sys/arch/x68k/stand/boot_ufs/
readufs.h 75 } fstype; member in struct:ufs_info
  /src/sys/fs/puffs/
puffs_vfsops.c 98 char fstype[_VFS_NAMELEN]; local
196 (void)strlcpy(fstype, PUFFS_TYPEPREFIX, sizeof(fstype));
197 (void)strlcat(fstype, args->pa_typename, sizeof(fstype));
205 (void)strlcpy(args->pa_typename, fstype, sizeof(args->pa_typename));
208 UIO_SYSSPACE, fstype, mp, curlwp);
  /src/usr.sbin/autofs/
automountd.c 82 * Remove "fstype=whatever" from optionsp and return the "whatever" part.
173 char *key, *options, *fstype, *nobrowse, *retrycnt, *tmp; local
316 * Figure out fstype.
318 fstype = pick_option("fstype=", &options);
319 if (fstype == NULL) {
320 log_debugx("fstype not specified in options; "
322 fstype = checked_strdup("nfs");
326 if (strcmp(fstype, "nfs") == 0) {
347 assert(!strcmp(fstype, "nfs"))
    [all...]
  /src/usr.sbin/makefs/
makefs.c 101 fstype_t *fstype; local
111 if ((fstype = get_fstype(DEFAULT_FSTYPE)) == NULL)
120 if (fstype->prepare_options)
121 fstype->prepare_options(&fsoptions);
153 usage(fstype, &fsoptions);
226 if (! fstype->parse_options(p, &fsoptions))
227 usage(fstype, &fsoptions);
249 if (fstype->cleanup_options)
250 fstype->cleanup_options(&fsoptions);
252 if ((fstype = get_fstype(optarg)) == NULL
    [all...]
  /src/sbin/mount/
mount.c 450 /* Figure out the fstype only if we defaulted to ffs */
732 u_char fstype; local
779 if ((fstype = dl.d_partitions[part].p_fstype) >= FSMAXMOUNTNAMES)
782 vfstype = mountnames[fstype];
  /src/tests/fs/common/
h_fsmacros.h 246 const char *fstype; local
256 if (!atf_tc_has_config_var(tc, "fstype"))
259 fstype = atf_tc_get_config_var(tc, "fstype");
260 if (strcmp(fstype, fs) == 0)
  /src/usr.sbin/installboot/
installboot.h 86 struct ib_fs *fstype; /* file system details (see below) */ member in struct:__anon8465
  /src/external/bsd/wpa/dist/src/utils/
wpa_debug.c 151 char *tmp2, *tmp_path, *fstype; local
155 fstype = strtok_r(NULL, " ", &tmp2);
156 if (fstype && strcmp(fstype, "debugfs") == 0) {

Completed in 43 milliseconds

1 2