HomeSort by: relevance | last modified time | path
    Searched defs:fstype (Results 1 - 25 of 32) 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 in typeref:typename:int
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 in function:tstatvfs
62 ATF_REQUIRE_STREQ(svb.f_fstypename, fstype);
  /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:__anon8dda5ceb0108
381 uint8_t fstype = FS_UNUSED; local in function:efi_block_find_partitions_gpt_entry
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 in function:efi_block_probe
527 fstype = bpart->disklabel.part.p_fstype
    [all...]
  /src/usr.sbin/fstyp/
hammer.c 51 static hammer_uuid_t fsid, fstype; local in function:test_ondisk
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 in function:test_voldata
117 memcpy(&fstype, &voldata->fstype, sizeof(fstype));
127 if (!uuid_equal(&fstype, &voldata->fstype, NULL)) {
  /src/sys/arch/x68k/x68k/
disksubr.c 171 u_char fstype; local in function:readdisklabel
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/arch/sh3/sh3/
disksubr.c 226 uint16_t *start, *end, *fstype; local in function:dkcksum_mmeye
232 fstype = (uint16_t *)&tdl.d_partitions[i].p_fstype;
233 *fstype = bswap16(*fstype);
  /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/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 in function:puffs_vfsop_mount
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 in function:handle_request
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/sys/arch/macppc/stand/ofwboot/
ofdev.c 150 u_int8_t fstype; local in function:check_apm_root
153 fstype = 0;
166 fstype = bzb->bzbType;
168 fstype = FS_BSDFFS;
172 fstype = FS_BSDFFS;
175 return fstype;
190 u_int8_t fstype; local in function:search_mac_label
205 fstype = check_apm_root(pme, &clust);
207 if (fstype && (lastclust == -1 || clust < lastclust)) {
210 a_part->p_fstype = fstype;
    [all...]
  /src/lib/libperfuse/
perfuse.c 443 char *fstype; local in function:perfuse_init
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/macppc/stand/installboot/
installboot.h 71 struct ib_fs *fstype; /* file system details (see below) */ member in struct:__anon551177cf0208
  /src/usr.sbin/makefs/
makefs.c 101 fstype_t *fstype; local in function:main
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/tests/fs/common/
h_fsmacros.h 246 const char *fstype; local in function:atf_check_fstype
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:__anon78e59b4b0308
  /src/sbin/mount/
mount.c 450 /* Figure out the fstype only if we defaulted to ffs */
732 u_char fstype; local in function:getfslab
779 if ((fstype = dl.d_partitions[part].p_fstype) >= FSMAXMOUNTNAMES)
782 vfstype = mountnames[fstype];
  /src/usr.sbin/sysinst/
disklabel.c 700 unsigned long fstype; local in function:disklabel_create_custom_part_type
702 fstype = strtoul(custom, &endp, 10);
709 return disklabel_find_type(fstype, true);
713 disklabel_get_fs_part_type(enum part_type pt, unsigned fstype, unsigned subtype)
715 return disklabel_find_type(fstype, false);
749 unsigned *fstype, unsigned *fs_sub_type)
752 *fstype = dl_part_type_from_generic(nat_type);
754 if (*fstype == FS_BSDFFS)
  /src/sys/ufs/ffs/
ffs_vfsops.c 1176 int blks, fstype = 0; local in function:ffs_mountfs
1255 fstype = UFS1;
1260 fstype = UFS1;
1265 fstype = UFS2;
1270 fstype = UFS2;
1277 if (fstype == UFS1 && !(fs->fs_old_flags & FS_FLAGS_UPDATED)) {
1391 ump->um_fstype = fstype;
  /src/sys/sys/
disklabel_rdb.h 198 * bsd file systems will be 'N','B',x,y where y is the fstype found in
216 uint8_t fstype; /* byte 3 from amiga dostype */ member in struct:adostype
  /src/usr.bin/find/
function.c 1049 * -fstype functions --
1060 static char fstype[sizeof(sb.f_fstypename)]; local in function:f_fstype
1102 strlcpy(fstype, sb.f_fstypename, sizeof(fstype));
1108 return (strncmp(fstype, plan->c_data, sizeof(fstype)) == 0);

Completed in 27 milliseconds

1 2