Home
last modified time | relevance | path

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

/third_party/nghttp2/src/
Dutil_test.cc155 CU_ASSERT("foobar" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
159 CU_ASSERT("f%6" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
163 CU_ASSERT("f%" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
167 CU_ASSERT("foobar" == util::percent_decode( in test_util_percent_decode()
171 util::percent_decode(balloc, StringRef::from_lit("%66%6"))); in test_util_percent_decode()
173 CU_ASSERT("f%" == util::percent_decode(balloc, StringRef::from_lit("%66%"))); in test_util_percent_decode()
Dasio_common.cc137 std::string percent_decode(const std::string &s) { in percent_decode() function
138 return util::percent_decode(std::begin(s), std::end(s)); in percent_decode()
Dasio_common.h58 dst.path = util::percent_decode(first, path_last); in split_path()
Dutil.h111 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function
134 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
Dasio_client_session_impl.cc525 uref.path = percent_decode(uref.raw_path); in submit()
Dutil.cc1402 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
DHttpServer.cc1256 path = util::percent_decode(stream->balloc, raw_path); in prepare_response()
Dnghttp.cc282 auto zone_id = util::percent_decode(zone_id_src, std::end(host)); in decode_host()
Dshrpx_config.cc3027 proxy.userinfo = util::percent_decode(config->balloc, uf); in parse_config()
/third_party/nghttp2/src/includes/nghttp2/
Dasio_http2.h112 std::string percent_decode(const std::string &s);
/third_party/nghttp2/examples/
Dasio-sv2.cc73 auto path = percent_decode(req.uri().path); in main()
Dlibevent-server.c368 static char *percent_decode(const uint8_t *value, size_t valuelen) { in percent_decode() function
496 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);