Searched defs:do_fstab_filter_options (Results 1 - 1 of 1) sorted by relevance

/systemd/src/test/
H A Dtest-fstab-util.c31 static void do_fstab_filter_options(const char *opts, function
61 do_fstab_filter_options("opt=0", "opt\0x-opt\0", 1, "opt", "0", "");
62 do_fstab_filter_options("opt=0", "x-opt\0opt\0", 1, "opt", "0", "");
63 do_fstab_filter_options("opt", "opt\0x-opt\0", 1, "opt", NULL, "");
64 do_fstab_filter_options("opt", "x-opt\0opt\0", 1, "opt", NULL, "");
65 do_fstab_filter_options("x-opt", "x-opt\0opt\0", 1, "x-opt", NULL, "");
67 do_fstab_filter_options("opt=0,other", "opt\0x-opt\0", 1, "opt", "0", "other");
68 do_fstab_filter_options("opt=0,other", "x-opt\0opt\0", 1, "opt", "0", "other");
69 do_fstab_filter_options("opt,other", "opt\0x-opt\0", 1, "opt", NULL, "other");
70 do_fstab_filter_options("op
[all...]

Completed in 14 milliseconds