Home
last modified time | relevance | path

Searched refs:mget (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/
H A Dmount.c601 struct extmnttab mget; in print_mnttab() local
609 while ((ret = getextmntent(fd, &mget, sizeof (struct extmnttab))) in print_mnttab()
611 if (ignore(mget.mnt_mntopts)) in print_mnttab()
613 if (mget.mnt_special && mget.mnt_mountp && in print_mnttab()
614 mget.mnt_fstype && mget.mnt_time) { in print_mnttab()
615 ltime = atol(mget.mnt_time); in print_mnttab()
618 elide_dev(mget.mnt_mntopts); in print_mnttab()
620 mget.mnt_special, in print_mnttab()
621 mget.mnt_mountp, in print_mnttab()
622 mget.mnt_fstype, in print_mnttab()
[all …]
H A Dumount.c150 struct mnttab mget; in main() local
248 mntnull(&mget); in main()
253 mget.mnt_mountp = mname; /* assume mount point */ in main()
255 doexec(&mget); in main()
319 mget.mnt_special = mget.mnt_mountp = mname; in main()
326 doexec(&mget); in main()
754 struct mnttab mget; in getmntall() local
763 while ((ret = getmntent(fp, &mget)) != -1) { in getmntall()
771 mp = new_mountent(&mget); in getmntall()
/illumos-gate/usr/src/cmd/fuser/
H A Dfuser.c107 struct mnttab mref, mget; in spec_to_mount() local
118 ret = getmntany(frp, &mget, &mref); in spec_to_mount()
123 return (mget.mnt_mountp); in spec_to_mount()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dcmdtab.c165 { "mget", mgethelp, 1, 1, 1, mget },
H A Dftp_var.h248 extern void mget(int argc, char *argv[]);
H A Dcmds.c700 mget(int argc, char *argv[]) in mget() function