Searched refs:streq_l (Results 1 – 11 of 11) sorted by relevance
/third_party/nghttp2/src/ |
D | http2.cc | 739 if (util::streq_l("t", name, 1)) { in lookup_token() 748 if (util::streq_l("vi", name, 2)) { in lookup_token() 757 if (util::streq_l("dat", name, 3)) { in lookup_token() 762 if (util::streq_l("lin", name, 3)) { in lookup_token() 767 if (util::streq_l("hos", name, 3)) { in lookup_token() 776 if (util::streq_l(":pat", name, 4)) { in lookup_token() 781 if (util::streq_l(":hos", name, 4)) { in lookup_token() 790 if (util::streq_l("cooki", name, 5)) { in lookup_token() 795 if (util::streq_l("serve", name, 5)) { in lookup_token() 800 if (util::streq_l("expec", name, 5)) { in lookup_token() [all …]
|
D | util_test.cc | 62 CU_ASSERT(util::streq_l("alpha", "alpha", 5)); in test_util_streq() 63 CU_ASSERT(util::streq_l("alpha", "alphabravo", 5)); in test_util_streq() 64 CU_ASSERT(!util::streq_l("alpha", "alphabravo", 6)); in test_util_streq() 65 CU_ASSERT(!util::streq_l("alphabravo", "alpha", 5)); in test_util_streq() 66 CU_ASSERT(!util::streq_l("alpha", "alphA", 5)); in test_util_streq() 67 CU_ASSERT(!util::streq_l("", "a", 1)); in test_util_streq() 68 CU_ASSERT(util::streq_l("", "", 0)); in test_util_streq() 69 CU_ASSERT(!util::streq_l("alpha", "", 0)); in test_util_streq()
|
D | shrpx_api_downstream_connection.cc | 173 if (util::streq_l("/api/v1beta1/backendconfi", std::begin(path), 25)) { in lookup_api() 182 if (util::streq_l("/api/v1beta1/configrevisio", std::begin(path), 26)) { in lookup_api()
|
D | util.h | 339 bool streq_l(const CharT (&a)[N], InputIt b, size_t blen) { in streq_l() function 344 bool streq_l(const CharT (&a)[N], const T &b) { in streq_l() function
|
D | shrpx_http2_downstream_connection.cc | 466 if (util::streq_l("authorization", nv.name, nv.namelen)) { in push_request_headers()
|
D | shrpx_downstream.cc | 840 if (util::streq_l(NGHTTP2_CLEARTEXT_PROTO_VERSION_ID, val.c_str(), in inspect_http1_request()
|
D | shrpx_config.cc | 643 if (util::streq_l("host", StringRef{var_name + str_size("http_"), in parse_log_format() 890 if (util::streq_l("h2", std::begin(protostr), protostr.size())) { in parse_downstream_params() 892 } else if (util::streq_l("http/1.1", std::begin(protostr), in parse_downstream_params()
|
D | shrpx_client_handler.cc | 1269 if (!util::streq_l("UNKNOWN", rb_.pos(), 7)) { in proxy_protocol_read()
|
D | HttpServer.cc | 1239 if (util::streq_l("nghttpd_do_not_respond_to_req=yes", in prepare_response()
|
D | h2load.cc | 738 util::streq_l(":status", name, namelen)) { in on_header()
|
D | nghttp.cc | 965 [](const Header &kv) { return util::streq_l(":method", kv.name); }); in on_upgrade_connect()
|