sbin/fsck/fsck.c
142
catopt(&options, globopt);
sbin/fsck/fsck.c
148
catopt(&options, globopt);
sbin/fsck/fsck.c
335
catopt(&optbuf, options);
sbin/fsck/fsck.c
337
catopt(&optbuf, extra);
sbin/fsck/fsck.c
339
catopt(&optbuf, auxopt);
sbin/fsck/fsck.c
341
catopt(&optbuf, "-B");
sbin/fsck/fsck.c
453
catopt(&e->options, newoptions);
sbin/fsck/fsck.c
78
static void catopt(char **, const char *);
sbin/mount/mount.c
250
options = catopt(options, optarg);
sbin/mount/mount.c
260
options = catopt(options, "ro");
sbin/mount/mount.c
276
options = catopt(options, "noro");
sbin/mount/mount.c
291
options = catopt(options, "noro");
sbin/mount/mount.c
564
optbuf = catopt(strdup(mntopts), options);
sbin/mount/mount.c
569
optbuf = catopt(optbuf, "force");
sbin/mount/mount.c
571
optbuf = catopt(optbuf, "ro");
sbin/mount/mount.c
579
optbuf = catopt(optbuf, "update");
sbin/mount/mount.c
76
char *catopt(char *, const char *);
sbin/mount/mount.c
824
expopt = catopt(expopt, fstab);
sbin/mount/mount.c
826
expopt = catopt(expopt, cur);
sbin/mount/mount.c
828
expopt = catopt(expopt, o);
sbin/mount/mount.c
851
newopt = catopt(newopt, o);
sbin/mount/mount.c
905
rw = catopt(NULL, "rw");
sbin/mount/mount.c
908
opts = catopt(rw, opts);
sbin/mount/mount.c
956
if (flags & MNT_RDONLY) res = catopt(res, "ro");
sbin/mount/mount.c
957
if (flags & MNT_SYNCHRONOUS) res = catopt(res, "sync");
sbin/mount/mount.c
958
if (flags & MNT_NOEXEC) res = catopt(res, "noexec");
sbin/mount/mount.c
959
if (flags & MNT_NOSUID) res = catopt(res, "nosuid");
sbin/mount/mount.c
960
if (flags & MNT_UNION) res = catopt(res, "union");
sbin/mount/mount.c
961
if (flags & MNT_ASYNC) res = catopt(res, "async");
sbin/mount/mount.c
962
if (flags & MNT_NOATIME) res = catopt(res, "noatime");
sbin/mount/mount.c
963
if (flags & MNT_NOCLUSTERR) res = catopt(res, "noclusterr");
sbin/mount/mount.c
964
if (flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw");
sbin/mount/mount.c
965
if (flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow");
sbin/mount/mount.c
966
if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir");
sbin/mount/mount.c
967
if (flags & MNT_MULTILABEL) res = catopt(res, "multilabel");
sbin/mount/mount.c
968
if (flags & MNT_ACLS) res = catopt(res, "acls");
sbin/mount/mount.c
969
if (flags & MNT_NFS4ACLS) res = catopt(res, "nfsv4acls");
sbin/mount/mount.c
970
if (flags & MNT_UNTRUSTED) res = catopt(res, "untrusted");
sbin/mount/mount.c
971
if (flags & MNT_NOCOVER) res = catopt(res, "nocover");
sbin/mount/mount.c
972
if (flags & MNT_EMPTYDIR) res = catopt(res, "emptydir");