Lines Matching refs:me
158 safe_mapent(mapent *me);
503 mapent *me;
554 me = new_mapent(noroot, strdup(mntpnt), strdup("autofs"), opts,
556 if (me != NULL) {
558 me->map_next = mapents->map_next;
559 mapents->map_next = me;
679 safe_mapent(mapent *me)
683 if (me->map_next != NULL) {
687 opts = me->map_mntopts;
688 me->map_mntopts = safe_opts(opts);
690 return (me->map_mntopts != NULL);
760 mapent *me;
764 me = calloc(1, sizeof (*me));
770 (host == NULL) || (dir == NULL) || (me == NULL) || (mfs == NULL) ||
773 free(me);
784 me->map_root = (root != noroot) ? root : NULL;
785 me->map_fstype = fstype;
786 me->map_mounter = mounter;
787 me->map_mntpnt = mntpnt;
788 me->map_mntopts = mntopts;
789 me->map_fsw = NULL;
790 me->map_fswq = NULL;
791 me->map_fs = mfs;
794 me->map_mntlevel = -1;
795 me->map_modified = FALSE;
796 me->map_faked = FALSE;
797 me->map_err = 0; /* MAPENT_NOERR */
798 return (me);