Searched refs:fstab_test_option (Results 1 – 8 of 8) sorted by relevance
/systemd-251/src/fstab-generator/ |
D | fstab-generator.c | 183 return fstab_test_option(me->mnt_opts, "_netdev\0") || in mount_is_network() 190 return fstab_test_option(me->mnt_opts, "x-initrd.mount\0") || in mount_in_initrd() 637 makefs = fstab_test_option(me->mnt_opts, "x-systemd.makefs\0"); in parse_fstab() 638 growfs = fstab_test_option(me->mnt_opts, "x-systemd.growfs\0"); in parse_fstab() 658 rw_only = fstab_test_option(me->mnt_opts, "x-systemd.rw-only\0"); in parse_fstab() 659 automount = fstab_test_option(me->mnt_opts, in parse_fstab() 808 !fstab_test_option(arg_root_options, "ro\0" "rw\0")) in add_sysroot_mount() 887 else if (!fstab_test_option(arg_usr_options, "ro\0" "rw\0")) in add_sysroot_usr_mount()
|
/systemd-251/src/shared/ |
D | fstab-util.h | 21 static inline bool fstab_test_option(const char *opts, const char *names) { in fstab_test_option() function
|
D | fstab-util.c | 56 if (opts && fstab_test_option(opts, "x-initrd.mount\0") && !in_initrd()) in fstab_is_extrinsic()
|
D | generator.c | 304 if (!fstab_test_option(opts, "_netdev\0")) in generator_write_device_deps()
|
/systemd-251/src/cryptsetup/ |
D | cryptsetup-generator.c | 300 swap = fstab_test_option(options, "swap\0"); in create_disk() 301 netdev = fstab_test_option(options, "_netdev\0"); in create_disk() 302 attach_in_initrd = fstab_test_option(options, "x-initrd.attach\0"); in create_disk()
|
/systemd-251/src/veritysetup/ |
D | veritysetup-generator.c | 338 netdev = fstab_test_option(options, "_netdev\0"); in create_disk() 339 attach_in_initrd = fstab_test_option(options, "x-initrd.attach\0"); in create_disk()
|
/systemd-251/src/core/ |
D | mount.c | 90 if (fstab_test_option(p->options, "_netdev\0")) in mount_is_network() 111 if (fstab_test_option(p->options, "loop\0")) in mount_is_loop() 120 if (fstab_test_option(p->options, "bind\0" "rbind\0")) in mount_is_bind() 143 return fstab_test_option(p->options, "x-systemd.device-bound\0"); in mount_is_bound_to_device() 167 return fstab_test_option(p->options, in mount_needs_quota()
|
D | automount.c | 200 if (fstab_test_option(a->extra_options, reserved_options[i])) in automount_verify()
|