Lines Matching refs:request
91 std::string* request) {
92 if (!request) {
93 ASSERT_STRING("FinancialPing::FormRequest: request is NULL");
97 request->clear();
121 base::StringAppendF(request, "%s?", kFinancialPingPath);
124 base::StringAppendF(request, "%s=%s", kProductSignatureCgiVariable,
127 base::StringAppendF(request, "&%s=%s", kProductBrandCgiVariable,
131 base::StringAppendF(request, "&%s=%s", kProductIdCgiVariable, product_id);
134 base::StringAppendF(request, "&%s=%s", kProductLanguageCgiVariable,
142 base::StringAppendF(request, "&%s", cgi);
166 base::StringAppendF(request, "&%s", cgi);
171 base::StringAppendF(request, "&%s=%s", kMachineIdCgiVariable,
211 bool FinancialPing::PingServer(const char* request, std::string* response) {
232 // Prepare the HTTP request.
234 "GET", request, NULL, NULL, kFinancialPingResponseObjects,
242 // Send the HTTP request. Note: Fails if user is working in off-line mode.
282 request);