Lines Matching refs:begin

160     ptr = std::copy(std::begin(proto), std::end(proto), ptr);
201 auto end_buf = std::copy_n(rawhost, len, std::begin(buf));
203 util::inp_strlower(std::begin(buf), end_buf);
205 auto hostname = StringRef{std::begin(buf), end_buf};
367 std::copy(std::begin(*data), std::end(*data), buf);
432 << std::string(std::begin(res.value), std::end(res.value));
438 << std::string(std::begin(res.value), std::end(res.value));
571 std::copy(std::begin(key.data.name), std::end(key.data.name), key_name);
600 if (std::equal(std::begin(key.data.name), std::end(key.data.name),
857 std::copy(std::begin(secret), std::end(secret), psk);
891 *std::copy(std::begin(identity), std::end(identity), identity_out) = '\0';
892 std::copy(std::begin(secret), std::end(secret), psk);
1700 std::copy_n("localhost", sizeof("localhost"), std::begin(host));
1738 auto ptWildcard = std::find(std::begin(pattern), std::end(pattern), '*');
1743 auto ptLeftLabelEnd = std::find(std::begin(pattern), std::end(pattern), '.');
1761 std::find(std::begin(hostname), std::end(hostname), '.');
1769 if (hnLeftLabelEnd - std::begin(hostname) <
1770 ptLeftLabelEnd - std::begin(pattern)) {
1773 return util::istarts_with(StringRef{std::begin(hostname), hnLeftLabelEnd},
1774 StringRef{std::begin(pattern), ptWildcard}) &&
1775 util::iends_with(StringRef{std::begin(hostname), hnLeftLabelEnd},
1998 auto wildcard_it = std::find(std::begin(hostname), std::end(hostname), '*');
2001 auto wildcard_prefix = StringRef{std::begin(hostname), wildcard_it};
2004 auto rev_suffix = StringRef{std::begin(buf),
2005 std::reverse_copy(std::begin(wildcard_suffix),
2007 std::begin(buf))};
2023 auto rev_prefix = StringRef{std::begin(buf),
2024 std::reverse_copy(std::begin(wildcard_prefix),
2026 std::begin(buf))};
2065 std::begin(buf), std::reverse_copy(std::begin(hostname),
2066 std::end(hostname), std::begin(buf))};
2082 rev_host = StringRef{std::begin(rev_host) + nread, std::end(rev_host)};
2084 auto rev_prefix = StringRef{std::begin(rev_host) + 1, std::end(rev_host)};
2168 auto end_buf = std::copy_n(name, len, std::begin(buf));
2169 util::inp_strlower(std::begin(buf), end_buf);
2171 auto idx = lt->add_cert(StringRef{std::begin(buf), end_buf},
2206 auto end_buf = std::copy(std::begin(cn), std::end(cn), std::begin(buf));
2210 util::inp_strlower(std::begin(buf), end_buf);
2213 lt->add_cert(StringRef{std::begin(buf), end_buf}, indexed_ssl_ctx.size());
2246 return std::any_of(std::begin(faddrs), std::end(faddrs),