Home
last modified time | relevance | path

Searched refs:f_basetype (Results 1 – 25 of 54) sorted by relevance

123

/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dstatvfs.c83 strlcpy(vfs->f_basetype, FS_default, sizeof(vfs->f_basetype) - 1);
85 strlcpy(vfs->f_fstr, vfs->f_basetype, sizeof(vfs->f_fstr) - 1);
134 strlcpy(vfs->f_basetype, FS_default, sizeof(vfs->f_basetype));
136 strlcpy(vfs->f_fstr, vfs->f_basetype, sizeof(vfs->f_fstr));
/illumos-gate/usr/src/uts/common/sys/
H A Dstatvfs.h63 char f_basetype[_FSTYPSZ]; /* target fs type name, */ member
87 char f_basetype[_FSTYPSZ]; /* target fs type name, */ member
109 char f_basetype[FSTYPSZ]; /* target fs type name, */ member
138 char f_basetype[FSTYPSZ]; /* target fs type name, */ member
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dtrace.c718 char f_basetype[BUFSIZ]; in collect_prototype() local
774 decl_GetTraceInfo(pp, f_type, f_basetype, &funargs); in collect_prototype()
777 (void) sprintf(buf, "%s", strnormalize(f_basetype)); in collect_prototype()
778 (void) strcpy(f_basetype, buf); in collect_prototype()
779 levels = to_basetype(f_basetype); in collect_prototype()
786 f_name, f_basetype, f_type); in collect_prototype()
788 symtab_set_function(f_name, line, file, f_type, f_basetype, levels); in collect_prototype()
790 db_add_print_types(f_basetype, in collect_prototype()
793 symtab_add_print_types(f_basetype, q); in collect_prototype()
/illumos-gate/usr/src/test/os-tests/tests/vfs/
H A Dstatvfs.c87 if (strcmp(sv.f_basetype, fs) != 0) { in statvfs_pass()
89 "found %s", path, fs, sv.f_basetype); in statvfs_pass()
284 if (strcmp(sv.f_basetype, test->ft_fs) != 0) { in fstatvfs_test()
286 "found %s", test->ft_path, test->ft_fs, sv.f_basetype); in fstatvfs_test()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockvfsops.c142 (void) strlcpy(stat->f_basetype, "sockfs", sizeof (stat->f_basetype)); in sockfs_statvfs()
/illumos-gate/usr/src/test/os-tests/tests/syscall/
H A Dopen.c58 if (strcmp(buf.f_basetype, "zfs") == 0) { in o_direct_test()
60 } else if (strcmp(buf.f_basetype, "tmpfs") == 0) { in o_direct_test()
/illumos-gate/usr/src/lib/libproc/common/
H A Dpr_statvfs.c50 (void) memcpy(dest->f_basetype, src->f_basetype, in statvfs_32_to_n()
51 sizeof (dest->f_basetype)); in statvfs_32_to_n()
H A DPisprocdir.c58 strcmp(statvfsb.f_basetype, "proc") == 0); in Pisprocdir()
/illumos-gate/usr/src/cmd/cmd-inet/sbin/netstrategy/
H A Dnetstrategy.c115 if (strncmp(vfs.f_basetype, "nfs", sizeof ("nfs") - 1) == 0) in get_root_fstype()
116 vfs.f_basetype[sizeof ("nfs") - 1] = '\0'; in get_root_fstype()
117 return (vfs.f_basetype); in get_root_fstype()
/illumos-gate/usr/src/uts/common/syscall/
H A Dstatvfs.c66 bcopy((src)->f_basetype, (dst)->f_basetype, \
67 sizeof ((dst)->f_basetype)); \
H A Dstatfs.c150 if ((vswp = vfs_getvfssw(svfs.f_basetype)) == NULL) in cstatfs()
/illumos-gate/usr/src/uts/common/fs/objfs/
H A Dobjfs_vfs.c257 (void) strlcpy(sp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name, in objfs_statvfs()
258 sizeof (sp->f_basetype)); in objfs_statvfs()
/illumos-gate/usr/src/uts/common/fs/sharefs/
H A Dsharefs_vfsops.c283 (void) strlcpy(sp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name, in sharefs_statvfs()
284 sizeof (sp->f_basetype)); in sharefs_statvfs()
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Dfs89 #define _mem_f_basetype_statvfs 1 /* f_basetype is a member of struct statvfs */
99 #define f_basetype f_reserved7
116 char f_basetype[16]; /* target fs type name, null-terminated */
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Dfs89 #define _mem_f_basetype_statvfs 1 /* f_basetype is a member of struct statvfs */
99 #define f_basetype f_reserved7
116 char f_basetype[16]; /* target fs type name, null-terminated */
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Dfs89 #define _mem_f_basetype_statvfs 1 /* f_basetype is a member of struct statvfs */
99 #define f_basetype f_reserved7
116 char f_basetype[16]; /* target fs type name, null-terminated */
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Dfs93 #define _mem_f_basetype_statvfs 1 /* f_basetype is a member of struct statvfs */
103 #define f_basetype f_reserved7
120 char f_basetype[16]; /* target fs type name, null-terminated */
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dfs140 mem statvfs.f_basetype,statvfs.f_frsize sys/types.h sys/statvfs.h
142 …sys/types.h sys/statvfs.h note{ statvfs.f_reserved7 can double for statvfs.f_basetype }end compile{
185 #define f_basetype f_reserved7
202 char f_basetype[16]; /* target fs type name, null-terminated */
/illumos-gate/usr/src/test/os-tests/tests/sdevfs/
H A Dsdevfs_eisdir.c55 if (strncmp("dev", vfs.f_basetype, FSTYPSZ) != 0) { in main()
/illumos-gate/usr/src/uts/common/fs/ctfs/
H A Dctfs_root.c354 (void) strlcpy(sp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name, in ctfs_statvfs()
355 sizeof (sp->f_basetype)); in ctfs_statvfs()
/illumos-gate/usr/src/cmd/bart/
H A Dcreate.c403 (strcmp(parent_vfs.f_basetype, path_vfs.f_basetype) != 0)) in walker()
/illumos-gate/usr/src/uts/common/fs/namefs/
H A Dnamevfs.c548 "unspecified_%s_%s", svfsp->f_basetype, resource_nodetype); in nm_mount()
667 (void) strcpy(sp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name); in nm_statvfs()
/illumos-gate/usr/src/uts/common/fs/mntfs/
H A Dmntvfsops.c295 (void) strcpy(sp->f_basetype, vfssw[mntfstype].vsw_name); in mntstatvfs()
/illumos-gate/usr/src/lib/libpkg/common/
H A Dverify.c822 if (strcmp(vfsstatus.f_basetype, "pcfs") != 0 && in averify()
858 if (strcmp(vfsstatus.f_basetype, "pcfs") != 0) { in fverify()
/illumos-gate/usr/src/uts/common/fs/proc/
H A Dprvfsops.c319 (void) strcpy(sp->f_basetype, vfssw[procfstype].vsw_name); in prstatvfs()

123