HomeSort by: relevance | last modified time | path
    Searched defs:fstypename (Results 1 - 3 of 3) sorted by relevancy

  /src/sbin/gpt/
migrate.c 97 fstypename(u_int t) function in typeref:typename:const char *
165 "using \"Microsoft Basic Data\"", i, fstypename(fstype));
212 fstypename(dl->d_partitions[i].p_fstype));
  /src/sbin/mount/
mount.c 115 const char *mountopts, *fstypename; local in function:main
253 fstypename = mntbuf->f_fstypename;
283 fstypename = fs->fs_vfstype;
289 rval = mountfs(fstypename, mntfromname,
  /src/sys/kern/
vfs_syscalls.c 466 char fstypename[sizeof(((struct statvfs *)NULL)->f_fstypename)]; local in function:mount_get_vfsops
471 error = copyinstr(fstype, fstypename, sizeof(fstypename),
474 error = copystr(fstype, fstypename, sizeof(fstypename), NULL);
489 strlcpy(fstypename, mountcompatnames[fsindex],
490 sizeof(fstypename));
494 if (strcmp(fstypename, "ufs") == 0)
495 fstypename[0] = 'f';
497 if ((*vfsops = vfs_getopsbyname(fstypename)) != NULL
    [all...]

Completed in 14 milliseconds