Lines Matching defs:me
58 struct mntent *me,
67 assert(me);
105 if (!isempty(me->mnt_opts) && !streq(me->mnt_opts, "defaults"))
106 fprintf(f, "Options=%s\n", me->mnt_opts);
113 r = generator_write_timeouts(arg_dest, what, what, me->mnt_opts, NULL);
131 static bool mount_is_network(struct mntent *me) {
132 assert(me);
134 return fstab_test_option(me->mnt_opts, "_netdev\0") ||
135 fstype_is_network(me->mnt_type);
138 static bool mount_in_initrd(struct mntent *me) {
139 assert(me);
141 return fstab_test_option(me->mnt_opts, "x-initrd.mount\0") ||
142 streq(me->mnt_dir, "/usr");
410 struct mntent *me;
423 while ((me = getmntent(f))) {
428 if (initrd && !mount_in_initrd(me))
431 what = fstab_node_to_udev_node(me->mnt_fsname);
440 where = initrd ? strappend("/sysroot/", me->mnt_dir) : strdup(me->mnt_dir);
447 noauto = fstab_test_yes_no_option(me->mnt_opts, "noauto\0" "auto\0");
448 nofail = fstab_test_yes_no_option(me->mnt_opts, "nofail\0" "fail\0");
450 what, where, me->mnt_type,
453 if (streq(me->mnt_type, "swap"))
454 k = add_swap(what, me, noauto, nofail);
459 automount = fstab_test_option(me->mnt_opts,
464 else if (mount_is_network(me))
471 me->mnt_type,
472 me->mnt_opts,
473 me->mnt_passno,