HomeSort by relevance Sort by last modified time
    Searched defs:fstype (Results 1 - 25 of 54) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/filesystems/common/cmdgeneration/share/
cmdgen_shareall.c 42 CCIMProperty *fstype; local
49 * 1. String fstype,
63 fstype = tmpParamList->mDataObject;
66 if (fstype != NULL && fstype->mValue != NULL &&
67 strlen(fstype->mValue) != 0) {
69 strlen(fstype->mValue) + 5;
82 fstype->mValue);
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/filesystems/common/cmdgeneration/unshare/
cmdgen_unshareall.c 41 CCIMProperty *fstype; local
52 * 1. String fstype
59 fstype = currentParam->mDataObject;
60 if (fstype != NULL && fstype->mValue != NULL &&
61 strlen(fstype->mValue) != 0) {
68 strlen(fstype->mValue) + 5;
74 FSTYPE_FLAG, fstype->mValue);
  /onnv/onnv-gate/usr/src/cmd/fs.d/ctfs/
mount.c 52 static char fstype[] = "ctfs"; variable
86 len = strlen(fstype) + 1 + strlen(myname);
94 (void) snprintf(typename, len, "%s %s", fstype, myname);
145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0,
  /onnv/onnv-gate/usr/src/cmd/fs.d/fd/
mount.c 45 #define NAME_MAX 64 /* sizeof "fstype myname" */
47 #define FSTYPE "fd"
57 static char fstype[] = FSTYPE; variable
81 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
168 (void) fprintf(stderr, gettext("%s: %s is not this fstype.\n"),
209 fstype, NULL, 0, optbuf, MAX_MNTOPT_STR)) {
  /onnv/onnv-gate/usr/src/cmd/fs.d/lofs/mount/
mount.c 57 static char fstype[] = MNTTYPE_LOFS; variable
80 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
129 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0,
  /onnv/onnv-gate/usr/src/cmd/fs.d/objfs/
mount.c 52 static char fstype[] = "objfs"; variable
86 len = strlen(fstype) + 1 + strlen(myname);
94 (void) snprintf(typename, len, "%s %s", fstype, myname);
145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0,
  /onnv/onnv-gate/usr/src/cmd/fs.d/sharefs/
mount.c 52 static char fstype[] = "sharefs"; variable
86 len = strlen(fstype) + 1 + strlen(myname);
94 (void) snprintf(typename, len, "%s %s", fstype, myname);
145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0,
  /onnv/onnv-gate/usr/src/cmd/fs.d/mntfs/
mount.c 46 #define NAME_MAX 64 /* sizeof "fstype myname" */
48 #define FSTYPE "mntfs"
63 static char fstype[] = FSTYPE; variable
84 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
164 (void) fprintf(stderr, gettext("%s: %s is not this fstype.\n"),
201 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0,
219 fstype, myname, fstype, myname, fstype);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/proc/
mount.c 46 #define NAME_MAX 64 /* sizeof "fstype myname" */
48 #define FSTYPE "proc"
63 static char fstype[] = FSTYPE; variable
84 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
165 (void) fprintf(stderr, gettext("%s: %s is not this fstype.\n"),
209 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0,
226 fstype, myname, fstype, myname, fstype);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/udfs/mount/
mount.c 41 #define FSTYPE "udfs"
52 static char fstype[] = FSTYPE; variable
80 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
211 fstype, NULL, 0, optbuf, MAX_MNTOPT_STR) == -1) {
  /onnv/onnv-gate/usr/src/cmd/fs.d/
volcopy.c 60 static void doexec(char *fstype, char *nargv[]);
67 char *fstype = NULL; local
128 "FSType specified.\n"
129 "Usage:\nvolcopy [-F FSType] [-V]"
137 perr("Usage:\nvolcopy [-F FSType] [-V]"
140 fstype = &argv[1][0];
142 fstype = &argv[1][2];
143 if (strlen(fstype) > FSTYPE_MAX)
144 perr("volcopy: FSType %s exceeds %d"
145 " characters\n", fstype, FSTYPE_MAX)
    [all...]
ff.c 50 char *fstype = NULL; /* fstype name is filled in here */ variable
52 char *newargv[ARGV_MAX]; /* args for the fstype specific command */
64 "[-F FSType] [-V] [current_options] [-o specific_options] special ...",
66 "[-F FSType] [-V] [current_options] [-o specific_options] [special ...]",
68 "[-F FSType] [-V] [current_options] [-o specific_options] special ..."
114 fstype = vfsbuf.vfs_fstype;
123 "%s [-F FSType] [-V] [current_options] [-o specific_options] special ...\n",
136 case 'F': /* FSType specified */
138 fstype = optarg
    [all...]
switchout.c 59 char *fstype = NULL; /* fstype name is filled in here */ variable
61 char *newargv[ARGV_MAX]; /* args for the fstype specific command */
69 * "[-F FSType]".
79 "[-F FSType] [-V] special inumber ...",
84 "[-F FSType] [-V] [-m] [-o specific_options] special ",
89 "[-F FSType] [-V] special inumber ...",
94 "[-F FSType] [-V] [-o specific_options] special",
99 "[-F FSType] [-V] -o special_options /mount/point",
100 "-d [-F FSType] [-V] /mount/point | dev"
    [all...]
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_patch.c 71 char fstype[512]; local
77 /* or fstype if swap */
93 cmpstr = &fstype[0];
124 /* or that the fstype/mntpoint match what was passed in */
127 /* entries of swap in the file, and so the fstype is not */
130 bdev, cdev, mntpt, fstype, fsckpass,
154 blkname, char_device, mntpt, fstype, fsckpass,
159 blkname, char_device, mntpt, fstype, fsckpass,
meta_check.c 300 char **fstype = skip_these_mntents; local
310 while (*fstype != NULL)
311 if (strcmp(m.mnt_fstype, *fstype++) == 0) {
368 char **fstype = skip_these_mntents; local
378 while (*fstype != NULL)
379 if (strcmp(m.mnt_fstype, *fstype++) == 0) {
  /onnv/onnv-gate/usr/src/cmd/fs.d/hsfs/mount/
mount.c 62 static char fstype[] = MNTTYPE_HSFS; variable
105 snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
224 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0,
  /onnv/onnv-gate/usr/src/cmd/fs.d/dev/
mount.c 50 static char fstype[] = MNTTYPE_DEV; variable
79 " special mount_point\n"), fstype, myname, fstype, myname, fstype);
96 if (mount(special, mountpt, flags, fstype, &mountargs,
279 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
  /onnv/onnv-gate/usr/src/cmd/fs.d/autofs/
autod_mount.c 138 * the fstype.
336 mount_generic(special, fstype, opts, mntpnt, overlay)
337 char *special, *fstype, *opts, *mntpnt;
347 special, mntpnt, fstype, opts);
377 res = call_fork_exec(fstype, "mount", newargv, verbose);
487 m.mnt_fstype = ur->fstype;
496 if (strcmp(ur->fstype, MNTTYPE_NFS) == 0) {
545 char *fstype = mnt->mnt_fstype; local
550 if (strcmp(fstype, MNTTYPE_NFS) == 0) {
552 } else if (strcmp(fstype, MNTTYPE_LOFS) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/filesystems/wbem_nfs/assoc/
Solaris_NFSShareEntry.c 1043 char *fstype; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/brand/lx/lx_brand/common/
mount.c 265 char *fstype, char *options, int options_size)
372 (void) strcpy(fstype, "nfs3");
398 (void) strcpy(fstype, "nfs");
530 char fstype[MAXPATHLEN], options[MAXPATHLEN]; local
557 rv = uucopystr((void *)fstypep, &fstype, sizeof (fstype));
558 if ((rv == -1) || (rv == sizeof (fstype)))
563 lx_debug("\tlinux mount fstype: %s", fstype);
576 (void) strcpy(fstype, "lofs")
    [all...]
  /onnv/onnv-gate/usr/src/lib/libfsmgt/common/
fs_dfstab.c 47 char *fstype; member in struct:dfstab_entry
145 if (headp->fstype != NULL) {
146 free(headp->fstype);
172 if (new_entry->fstype) {
173 sprintf(tempstr, "-F %s ", new_entry->fstype);
241 *err |= (dfstablist->fstype != NULL);
242 dfstablist->fstype = strdup(optarg);
243 if (dfstablist->fstype == NULL) {
277 if (dfstablist->fstype == NULL) {
288 dfstablist->fstype = strdup(fileutil_getfs(fp))
    [all...]
libfsmgt.h 60 char *fstype; member in struct:mount_default_list
73 char *fstype; member in struct:mount_list
88 char *fstype; member in struct:share_list
521 char *mountp, char *fstype, char *mntopts,
842 * fs_dfstab_entry_t entry - the dfstab entry to retrieve the fstype from.
847 * Note: if fstype is not set in the dfstab entry the default fstype is
945 * char *fstype - The filesystem type for the share
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/ufs/mount/
mount.c 89 #define NAME_MAX 64 /* sizeof "fstype myname" */
103 static char fstype[] = MNTTYPE_UFS; variable
182 (void) snprintf(typename, sizeof (typename), "%s %s", fstype, myname);
231 mnt.mnt_fstype = fstype;
552 again: if (mount(mnt->mnt_special, mnt->mnt_mountp, flags, fstype,
858 (void) fprintf(stderr, gettext("%s: %s is not this fstype\n"),
  /onnv/onnv-gate/usr/src/cmd/rexd/
mount_nfs.c 123 char *fstype; local
279 fstype = MNTTYPE_NFS;
327 fstype = MNTTYPE_NFS3;
369 if (mount(fsname, dir, flags, fstype, &args, sizeof (args)) < 0) {
  /onnv/onnv-gate/usr/src/ucbhead/sys/
vfs.h 116 char *fstype; member in struct:mounta
204 extern vfssw_t *vfs_getvfssw(); /* find vfssw ptr given fstype name */
221 extern char rootfstype[]; /* name of root fstype */

Completed in 540 milliseconds

1 2 3