Searched refs:percent_decode (Results 1 – 10 of 10) 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 | 114 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function 137 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
|
D | util.cc | 1490 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
|
D | HttpServer.cc | 1273 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);
|
/third_party/node/deps/ada/ |
D | ada.h | 4591 std::string percent_decode(std::string_view input, size_t first_percent); 6891 params.emplace_back(unicode::percent_decode(name, name.find('%')), ""); 6899 params.emplace_back(unicode::percent_decode(name, name.find('%')), 6900 unicode::percent_decode(value, value.find('%')));
|
D | ada.cpp | 10134 std::string percent_decode(const std::string_view input, size_t first_percent) { in percent_decode() function 10235 percent_decoded_buffer = unicode::percent_decode(plain, first_percent); in to_ascii()
|