Lines Matching refs:me
70 struct statfs *me = &entries[i];
72 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->f_fstypename) +
73 strlen(me->f_mntonname) + strlen(me->f_mntfromname) + strlen("") + 4);
78 stat(me->f_mntonname, &(mt->stat));
79 statvfs(me->f_mntonname, &(mt->statvfs));
82 mt->dir = stpcpy(mt->type, me->f_fstypename)+1;
83 mt->device = stpcpy(mt->dir, me->f_mntonname)+1;
84 mt->opts = stpcpy(mt->device, me->f_mntfromname)+1;
152 struct mntent *me;
162 while ((me = getmntent(fp))) {
163 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->mnt_fsname) +
164 strlen(me->mnt_dir) + strlen(me->mnt_type) + strlen(me->mnt_opts) + 4);
170 stat(me->mnt_dir, &(mt->stat));
171 statvfs(me->mnt_dir, &(mt->statvfs));
175 mt->dir = stpcpy(mt->type, me->mnt_type)+1;
176 mt->device = stpcpy(mt->dir, me->mnt_dir)+1;
177 mt->opts = stpcpy(mt->device, me->mnt_fsname)+1;
178 strcpy(mt->opts, me->mnt_opts);