Home
last modified time | relevance | path

Searched refs:percent_decode (Results 1 – 10 of 10) 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.h114 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function
137 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
Dutil.cc1490 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
DHttpServer.cc1273 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);
/third_party/node/deps/ada/
Dada.h4591 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('%')));
Dada.cpp10134 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()