Lines Matching refs:size
284 assert(worker->nclients == worker->clients.size());
414 if (client->streams.size() >= (size_t)config.max_concurrent_streams) {
862 curve_name.size(), nullptr)) {
1051 assert(nwrite <= buf.size());
1298 auto iovcnt = wb.riovec(iov.data(), iov.size());
1466 msg.msg_controllen = msg_ctrl.size();
1664 if (stats.size() < smp.max_samples) {
1706 if (samples.size() == 0) {
1714 return (m / static_cast<double>(samples.size())) * 100;
1763 nrequest_times += w->stats.req_stats.size();
1764 request_times_sampling = w->request_times_smp.n > w->stats.req_stats.size();
1766 nclient_times += w->stats.client_stats.size();
1767 client_times_sampling = w->client_smp.n > w->stats.client_stats.size();
1915 if (http_parser_parse_url(base_uri.c_str(), base_uri.size(), 0, &u) != 0 ||
1959 if (http_parser_parse_url(uri, (*first).size(), 0, &u) != 0) {
2023 uris.push_back(script_line.substr(pos + 1, script_line.size()));
2149 -f, --max-frame-size=<SIZE>
2150 Maximum frame size that the local endpoint is willing to
2155 Sets the stream level initial window size to (2**<N>)-1.
2160 Sets the connection level initial window size to
2270 --header-table-size=<SIZE>
2271 Specify decoder header table size.
2274 --encoder-header-table-size=<SIZE>
2275 Specify encoder header table size. The decoder (server)
2276 specifies the maximum dynamic table size it accepts.
2277 Then the negotiated dynamic table size is the minimum of
2306 --max-udp-payload-size=<SIZE>
2307 Specify the maximum outgoing UDP datagram payload size.
2347 {"max-frame-size", required_argument, nullptr, 'f'},
2365 {"header-table-size", required_argument, &flag, 7},
2366 {"encoder-header-table-size", required_argument, &flag, 8},
2375 {"max-udp-payload-size", required_argument, &flag, 17},
2450 std::cerr << "--max-frame-size: bad option value: " << optarg
2455 std::cerr << "--max-frame-size: minimum 16384" << std::endl;
2459 std::cerr << "--max-frame-size: maximum 16777215" << std::endl;
2549 if (path.size() == 0 || path.size() + 1 > sizeof(un.sun_path)) {
2559 unix_addr.sun_path[path.size()] = '\0';
2623 // --header-table-size
2625 "header-table-size", optarg) != 0) {
2630 // --encoder-header-table-size
2632 "encoder-header-table-size", optarg) != 0) {
2689 // --max-udp-payload-size
2692 std::cerr << "--max-udp-payload-size: bad option value: " << optarg
2697 std::cerr << "--max-udp-payload-size: must not exceed 65536"
2735 proto.insert(proto.begin(), static_cast<unsigned char>(proto.size()));
2772 if (config.nreqs > uris.size()) {
2776 << uris.size() << std::endl;
2778 config.nreqs = uris.size();
2781 config.nreqs = uris.size();
2989 std::copy_n(proto.c_str(), proto.size(), std::back_inserter(proto_list));
2992 SSL_CTX_set_alpn_protos(ssl_ctx, proto_list.data(), proto_list.size());
3047 config.h1reqs.reserve(reqlines.size());
3048 config.nva.reserve(reqlines.size());
3084 nva.reserve(2 + shared_nva.size());
3226 for (size_t i = 0; i < stats.status.size(); ++i) {