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.cc243 AddHeaders({{response_header::kContentLength, in Reply()
245 {response_header::kContentType, mime_type}}); in Reply()
Dhttp_request.h83 namespace response_header {
Dhttp_request_unittest.cc171 EXPECT_CALL(*connection, GetResponseHeader(response_header::kContentType)) in TEST_F()
/external/u-boot/net/
Dfastboot.c60 struct fastboot_header response_header = { in fastboot_udp_send_info() local
70 memcpy(packet, &response_header, sizeof(response_header)); in fastboot_udp_send_info()
71 packet += sizeof(response_header); in fastboot_udp_send_info()
127 struct fastboot_header response_header = header; in fastboot_send() local
149 response_header.seq = htons(response_header.seq); in fastboot_send()
150 memcpy(packet, &response_header, sizeof(response_header)); in fastboot_send()
151 packet += sizeof(response_header); in fastboot_send()
194 response_header.seq = htons(sequence_number); in fastboot_send()
195 memcpy(packet_base, &response_header, in fastboot_send()
196 sizeof(response_header)); in fastboot_send()
/external/curl/lib/
Dcurl_ntlm_wb.c113 free(conn->response_header); in Curl_http_auth_cleanup_ntlm_wb()
114 conn->response_header = NULL; in Curl_http_auth_cleanup_ntlm_wb()
328 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3); in ntlm_wb_response()
330 if(!conn->response_header) in ntlm_wb_response()
445 conn->response_header); in Curl_output_ntlm_wb()
447 free(conn->response_header); in Curl_output_ntlm_wb()
450 conn->response_header = NULL; in Curl_output_ntlm_wb()
466 conn->response_header); in Curl_output_ntlm_wb()
Durldata.h1001 char *response_header; member
/external/python/apitools/apitools/base/py/
Dtransfer_test.py43 response_header = response.info['content-range']
44 self.assertTrue(response_header.startswith(response_prefix))
46 response_header[len(response_prefix):].partition('/')[0])