Searched refs:percent_decode (Results 1 – 13 of 13) sorted by relevance
/third_party/nghttp2/src/ |
D | util_test.cc | 155 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()
|
D | asio_common.cc | 137 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()
|
D | asio_common.h | 58 dst.path = util::percent_decode(first, path_last); in split_path()
|
D | util.h | 111 std::string percent_decode(InputIt first, InputIt last) { in percent_decode() function 134 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src);
|
D | asio_client_session_impl.cc | 525 uref.path = percent_decode(uref.raw_path); in submit()
|
D | util.cc | 1402 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() function
|
D | HttpServer.cc | 1256 path = util::percent_decode(stream->balloc, raw_path); in prepare_response()
|
D | nghttp.cc | 282 auto zone_id = util::percent_decode(zone_id_src, std::end(host)); in decode_host()
|
D | shrpx_config.cc | 3027 proxy.userinfo = util::percent_decode(config->balloc, uf); in parse_config()
|
/third_party/nghttp2/src/includes/nghttp2/ |
D | asio_http2.h | 112 std::string percent_decode(const std::string &s);
|
/third_party/nghttp2/examples/ |
D | asio-sv2.cc | 73 auto path = percent_decode(req.uri().path); in main()
|
D | libevent-server.c | 368 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/ |
D | tutorial-server.rst | 507 stream_data->request_path = percent_decode(value, j);
|