Searched refs:percent_decode (Results 1 – 8 of 8) sorted by relevance
/third_party/nghttp2/src/ |
D | util_test.cc | 150 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()
|
D | util.h | 110 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function 133 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
|
D | util.cc | 1448 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
|
D | HttpServer.cc | 1269 path = util::percent_decode(stream->balloc, raw_path); in prepare_response()
|
D | nghttp.cc | 284 auto zone_id = util::percent_decode(zone_id_src, std::end(host)); in decode_host()
|
D | shrpx_config.cc | 3296 proxy.userinfo = util::percent_decode(config->balloc, uf); in parse_config()
|
/third_party/nghttp2/examples/ |
D | libevent-server.c | 376 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/ |
D | tutorial-server.rst | 507 stream_data->request_path = percent_decode(value, j);
|