Searched refs:response_header (Results 1 – 9 of 9) sorted by relevance
/external/libbrillo/brillo/http/ |
D | http_request.cc | 74 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 …]
|
D | http_connection_curl_unittest.cc | 293 {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()
|
D | http_transport_fake.cc | 243 AddHeaders({{response_header::kContentLength, in Reply() 245 {response_header::kContentType, mime_type}}); in Reply()
|
D | http_request.h | 83 namespace response_header {
|
D | http_request_unittest.cc | 171 EXPECT_CALL(*connection, GetResponseHeader(response_header::kContentType)) in TEST_F()
|
/external/u-boot/net/ |
D | fastboot.c | 60 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/ |
D | curl_ntlm_wb.c | 113 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()
|
D | urldata.h | 1001 char *response_header; member
|
/external/python/apitools/apitools/base/py/ |
D | transfer_test.py | 43 response_header = response.info['content-range'] 44 self.assertTrue(response_header.startswith(response_prefix)) 46 response_header[len(response_prefix):].partition('/')[0])
|