Home
last modified time | relevance | path

Searched refs:percent_decode (Results 1 – 8 of 8) sorted by relevance

/third_party/nghttp2/src/
Dutil_test.cc150 CU_ASSERT("foobar" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
154 CU_ASSERT("f%6" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
158 CU_ASSERT("f%" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
162 CU_ASSERT("foobar" == util::percent_decode( in test_util_percent_decode()
166 util::percent_decode(balloc, StringRef::from_lit("%66%6"))); in test_util_percent_decode()
168 CU_ASSERT("f%" == util::percent_decode(balloc, StringRef::from_lit("%66%"))); in test_util_percent_decode()
Dutil.h110 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function
133 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
Dutil.cc1448 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
DHttpServer.cc1269 path = util::percent_decode(stream->balloc, raw_path); in prepare_response()
Dnghttp.cc284 auto zone_id = util::percent_decode(zone_id_src, std::end(host)); in decode_host()
Dshrpx_config.cc3296 proxy.userinfo = util::percent_decode(config->balloc, uf); in parse_config()
/third_party/nghttp2/examples/
Dlibevent-server.c376 static char *percent_decode(const uint8_t *value, size_t valuelen) { in percent_decode() function
504 stream_data->request_path = percent_decode(value, j); in on_header_callback()
/third_party/nghttp2/doc/sources/
Dtutorial-server.rst507 stream_data->request_path = percent_decode(value, j);