Lines Matching defs:mpoint
24 char* mpoint;
37 int add_entry(mpoint, cmd)
38 char* mpoint;
43 if (mpoint == NULL || cmd == NULL)
46 entry->mpoint = strdup(mpoint);
50 (void)hashput(istate.mtab, entry->mpoint, (char *)entry);
55 int rm_entry(mpoint)
56 register char* mpoint;
62 if ((entry = (entry_t *)hashrm(istate.mtab, mpoint)) != NULL)
64 free(entry->mpoint);
105 int do_call(mpoint, value, dump)
106 char* mpoint;
126 printf("%s cannot mount", mpoint);