Lines Matching full:src
493 * @param src - string to be decoded
501 urlDecode(const std::string &src,
505 urlDecode(src.c_str(), src.length(), dst, is_form_url_encoded);
511 * @param src - buffer to be decoded
519 static void urlDecode(const char *src,
527 * @param src - buffer to be decoded (0 terminated)
534 static void urlDecode(const char *src,
541 * @param src - buffer to be encoded
546 urlEncode(const std::string &src, std::string &dst, bool append = false)
548 urlEncode(src.c_str(), src.length(), dst, append);
554 * @param src - buffer to be encoded (0 terminated)
559 urlEncode(const char *src, std::string &dst, bool append = false);
564 * @param src - buffer to be encoded
569 static void urlEncode(const char *src,