Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/fs.d/
H A Dmount.c603 struct extmnttab mget; in print_mnttab() local
611 while ((ret = getextmntent(fd, &mget, sizeof (struct extmnttab))) in print_mnttab()
613 if (ignore(mget.mnt_mntopts)) in print_mnttab()
615 if (mget.mnt_special && mget.mnt_mountp && in print_mnttab()
616 mget.mnt_fstype && mget.mnt_time) { in print_mnttab()
617 ltime = atol(mget.mnt_time); in print_mnttab()
620 elide_dev(mget.mnt_mntopts); in print_mnttab()
622 mget.mnt_special, in print_mnttab()
623 mget.mnt_mountp, in print_mnttab()
624 mget.mnt_fstype, in print_mnttab()
[all …]
H A Dumount.c148 struct mnttab mget; in main() local
246 mntnull(&mget); in main()
251 mget.mnt_mountp = mname; /* assume mount point */ in main()
253 doexec(&mget); in main()
317 mget.mnt_special = mget.mnt_mountp = mname; in main()
324 doexec(&mget); in main()
741 struct mnttab mget; in getmntall() local
750 while ((ret = getmntent(fp, &mget)) != -1) { in getmntall()
758 mp = new_mountent(&mget); in getmntall()
/titanic_50/usr/src/cmd/fuser/
H A Dfuser.c109 struct mnttab mref, mget; in spec_to_mount() local
120 ret = getmntany(frp, &mget, &mref); in spec_to_mount()
125 return (mget.mnt_mountp); in spec_to_mount()
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dcmdtab.c167 { "mget", mgethelp, 1, 1, 1, mget },
H A Dftp_var.h253 extern void mget(int argc, char *argv[]);
H A Dcmds.c703 mget(int argc, char *argv[]) in mget() function