Home
last modified time | relevance | path

Searched refs:response_header (Results 1 – 9 of 9) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_request.cc74 const char response_header::kAcceptRanges[] = "Accept-Ranges";
75 const char response_header::kAge[] = "Age";
76 const char response_header::kAllow[] = "Allow";
77 const char response_header::kCacheControl[] = "Cache-Control";
78 const char response_header::kConnection[] = "Connection";
79 const char response_header::kContentEncoding[] = "Content-Encoding";
80 const char response_header::kContentLanguage[] = "Content-Language";
81 const char response_header::kContentLength[] = "Content-Length";
82 const char response_header::kContentLocation[] = "Content-Location";
83 const char response_header::kContentMd5[] = "Content-MD5";
[all …]
Dhttp_connection_curl_unittest.cc293 {response_header::kContentLength, std::to_string(response_data.size())}, in TEST_F()
294 {response_header::kContentType, mime::text::kHtml}, in TEST_F()
314 connection_->GetResponseHeader(response_header::kContentLength)); in TEST_F()
316 connection_->GetResponseHeader(response_header::kContentType)); in TEST_F()
Dhttp_transport_fake.cc245 AddHeaders({{response_header::kContentLength, in Reply()
247 {response_header::kContentType, mime_type}}); in Reply()
Dhttp_request_unittest.cc170 EXPECT_CALL(*connection_, GetResponseHeader(response_header::kContentType)) in TEST_F()
Dhttp_request.h83 namespace response_header {
/external/curl/lib/
Dcurl_ntlm_wb.c110 free(conn->response_header); in Curl_ntlm_wb_cleanup()
111 conn->response_header = NULL; in Curl_ntlm_wb_cleanup()
321 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3); in ntlm_wb_response()
395 conn->response_header); in Curl_output_ntlm_wb()
397 free(conn->response_header); in Curl_output_ntlm_wb()
398 conn->response_header = NULL; in Curl_output_ntlm_wb()
413 conn->response_header); in Curl_output_ntlm_wb()
Durldata.h1005 char* response_header; member
Durl.c3823 conn->response_header = NULL; in allocate_conn()
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dtransfer_test.py24 response_header = response.info['content-range']
25 self.assertTrue(response_header.startswith(response_prefix))
27 response_header[len(response_prefix):].partition('/')[0])