Lines Matching defs:optarg

2064                             const char *optarg) {
2065 auto n = util::parse_uint_with_unit(optarg);
2067 std::cerr << "--" << opt << ": Bad option value: " << optarg << std::endl;
2387 auto n = util::parse_uint(optarg);
2389 std::cerr << "-n: bad option value: " << optarg << std::endl;
2397 auto n = util::parse_uint(optarg);
2399 std::cerr << "-c: bad option value: " << optarg << std::endl;
2406 datafile = optarg;
2413 auto n = util::parse_uint(optarg);
2415 std::cerr << "-t: bad option value: " << optarg << std::endl;
2423 auto n = util::parse_uint(optarg);
2425 std::cerr << "-m: bad option value: " << optarg << std::endl;
2433 auto n = util::parse_uint(optarg);
2448 auto n = util::parse_uint_with_unit(optarg);
2450 std::cerr << "--max-frame-size: bad option value: " << optarg
2466 char *header = optarg;
2468 char *value = strchr(optarg + 1, ':');
2470 std::cerr << "-H: invalid header: " << optarg << std::endl;
2481 std::cerr << "-H: invalid header - value missing: " << optarg
2492 config.ifile = optarg;
2495 auto proto = StringRef{optarg};
2508 auto n = util::parse_uint(optarg);
2510 std::cerr << "-r: bad option value: " << optarg << std::endl;
2522 config.conn_active_timeout = util::parse_duration_with_unit(optarg);
2525 << optarg << std::endl;
2530 config.conn_inactivity_timeout = util::parse_duration_with_unit(optarg);
2533 << optarg << std::endl;
2538 auto arg = StringRef{optarg};
2574 config.duration = util::parse_duration_with_unit(optarg);
2576 std::cerr << "-D: value error " << optarg << std::endl;
2597 config.ciphers = optarg;
2601 config.ifile = optarg;
2606 config.npn_list = util::parse_config_str_list(StringRef{optarg});
2610 config.rate_period = util::parse_duration_with_unit(optarg);
2612 std::cerr << "--rate-period: value error " << optarg << std::endl;
2625 "header-table-size", optarg) != 0) {
2632 "encoder-header-table-size", optarg) != 0) {
2638 config.warm_up_time = util::parse_duration_with_unit(optarg);
2640 std::cerr << "--warm-up-time: value error " << optarg << std::endl;
2646 logfile = optarg;
2650 auto p = util::split_hostport(StringRef{optarg});
2654 std::cerr << "--connect-to: Invalid value " << optarg << std::endl;
2663 auto v = std::strtod(optarg, &end);
2664 if (end == optarg || *end != '\0' || !std::isfinite(v) ||
2666 std::cerr << "--rps: Invalid value " << optarg << std::endl;
2674 config.groups = optarg;
2678 config.tls13_ciphers = optarg;
2686 qlog_base = optarg;
2690 auto n = util::parse_uint_with_unit(optarg);
2692 std::cerr << "--max-udp-payload-size: bad option value: " << optarg