Home | History | Annotate | Download | only in base

Lines Matching refs:ss

255   std::stringstream ss;
258 ss << separator << " ";
260 ss << attributes[i].first;
262 ss << "=\"" << EscapeAttribute(attributes[i].second) << "\"";
265 *composed = ss.str();
846 std::stringstream ss;
847 ss << auth_method;
848 ss << " username=" << quote(username);
849 ss << ", realm=" << quote(realm);
850 ss << ", nonce=" << quote(nonce);
851 ss << ", uri=" << quote(uri);
853 ss << ", qop=" << qop;
854 ss << ", nc=" << ncount;
855 ss << ", cnonce=" << quote(cnonce);
857 ss << ", response=\"" << dig_response << "\"";
859 ss << ", opaque=" << quote(opaque);
861 response = ss.str();