Searched refs:strUrl (Results 1 – 2 of 2) sorted by relevance
/base/telephony/sms_mms/services/mms/include/ |
D | mms_network_client.h | 49 … int32_t HttpPost(const std::string &strUrl, const std::string &strData, std::string &strResponse); 50 int32_t HttpGet(const std::string &strUrl, std::string &strResponse); 52 …HttpReqType type, const std::string &strUrl, const std::string &strData, std::string &strResponse); 56 …rlOpt(const std::unique_ptr<CURL, CURLClean> &mmsCurl, HttpReqType type, const std::string &strUrl, 58 …t32_t SetCurlOptCommon(const std::unique_ptr<CURL, CURLClean> &mmsCurl, const std::string &strUrl);
|
/base/telephony/sms_mms/services/mms/ |
D | mms_network_client.cpp | 279 int32_t MmsNetworkClient::HttpGet(const std::string &strUrl, std::string &strResponse) in HttpGet() argument 281 return HttpRequestExec(HttpReqType::HTTP_REQUEST_TYPE_GET, strUrl, "", strResponse); in HttpGet() 284 int32_t MmsNetworkClient::HttpPost(const std::string &strUrl, const std::string &strData, std::stri… in HttpPost() argument 286 return HttpRequestExec(HttpReqType::HTTP_REQUEST_TYPE_POST, strUrl, strData, strResponse); in HttpPost() 297 … HttpReqType type, const std::string &strUrl, const std::string &strData, std::string &strResponse) in HttpRequestExec() argument 299 if (strUrl.empty() || strUrl.length() > URL_SIZE) { in HttpRequestExec() 310 int32_t result = SetCurlOpt(mmsCurl, type, strUrl, strData, strResponse); in HttpRequestExec() 343 const std::string &strUrl, const std::string &strData, std::string &strResponse) in SetCurlOpt() argument 345 int32_t rlt = SetCurlOptCommon(mmsCurl, strUrl); in SetCurlOpt() 376 …lient::SetCurlOptCommon(const std::unique_ptr<CURL, CURLClean> &mmsCurl, const std::string &strUrl) in SetCurlOptCommon() argument [all …]
|