Lines Matching defs:options
1159 << " " << prog_name << " [options] <source> <mountpoint>\n";
1211 ("o", "Mount options (see mount.fuse(5) - only use if you know what "
1221 auto options = parse_wrapper(opt_parser, argc, argv);
1223 if (options.count("help")) {
1228 std::cout << std::endl << "options:"
1238 fs.debug = options.count("debug") != 0;
1239 fs.debug_fuse = options.count("debug-fuse") != 0;
1241 fs.foreground = options.count("foreground") != 0;
1245 fs.nosplice = options.count("nosplice") != 0;
1246 fs.num_threads = options["num-threads"].as<int>();
1247 fs.clone_fd = options["clone-fd"].as<bool>();
1266 /* Filter out some obviously incorrect options. */
1278 return options;
1300 // Parse command line options
1301 auto options {parse_options(argc, argv)};
1311 fs.timeout = options.count("nocache") ? 0 : 86400.0;
1356 if (options.count("single"))