Searched refs:HttpMethodToString (Results 1 – 7 of 7) sorted by relevance
21 TEST(UtilsTest, HttpMethodToString){ in TEST() argument22 std::string method = HttpMethodToString(HttpRequest::Method::Head); in TEST()24 method = HttpMethodToString(HttpRequest::Method::Post); in TEST()26 method = HttpMethodToString(HttpRequest::Method::Put); in TEST()28 method = HttpMethodToString(HttpRequest::Method::Delete); in TEST()30 method = HttpMethodToString(HttpRequest::Method::Connect); in TEST()32 method = HttpMethodToString(HttpRequest::Method::Options); in TEST()34 method = HttpMethodToString(HttpRequest::Method::Patch); in TEST()36 method = HttpMethodToString(HttpRequest::Method::Trace); in TEST()38 method = HttpMethodToString(HttpRequest::Method::Get); in TEST()
29 std::string HttpMethodToString(HttpRequest::Method method);
214 HttpMethodToString(request.method()) + " " + in makeRequest()220 HttpMethodToString(request.method()) + " " + in makeRequest()
210 plaintext << HttpMethodToString(method) << "\n" in buildRoaHttpRequest()286 plaintext << HttpMethodToString(method) << "&" << UrlEncode(url.path()) << "&" in buildRpcHttpRequest()
123 plaintext << HttpMethodToString(method) << "&" << UrlEncode(url.path()) << "&" in buildHttpRequest()
181 plaintext << HttpMethodToString(method) << "\n" in buildHttpRequest()
145 std::string AlibabaCloud::HttpMethodToString(HttpRequest::Method method) { in HttpMethodToString() function in AlibabaCloud
Completed in 9 milliseconds