/external/google-breakpad/src/tools/linux/symupload/ |
D | sym_upload.cc | 143 long response_code; in Start() local 152 &response_code, in Start() 157 printf("Response code: %ld\n", response_code); in Start() 160 } else if (response_code == 0) { in Start() 162 } else if (response_code != 200) { in Start() 163 printf("Failed to send symbol file: Response code %ld\n", response_code); in Start()
|
/external/curl/docs/examples/ |
D | getredirect.c | 34 long response_code; in main() local 49 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); in main() 51 ((response_code / 100) != 3)) { in main()
|
/external/google-breakpad/src/common/linux/ |
D | http_upload.cc | 65 long *response_code, in SendRequest() argument 67 if (response_code != NULL) in SendRequest() 68 *response_code = 0; in SendRequest() 166 if (response_code != NULL) { in SendRequest() 169 (*curl_easy_getinfo)(curl, CURLINFO_RESPONSE_CODE, response_code); in SendRequest()
|
D | http_upload.h | 69 long *response_code,
|
/external/autotest/client/cros/ |
D | dhcp_test_server.py | 255 response_code = handling_rule.handle(packet) 256 logging.info("Handler gave response: %d" % response_code) 257 if response_code & dhcp_handling_rule.RESPONSE_POP_HANDLER: 260 if response_code & dhcp_handling_rule.RESPONSE_HAVE_RESPONSE: 270 if response_code & dhcp_handling_rule.RESPONSE_TEST_FAILED: 276 if response_code & dhcp_handling_rule.RESPONSE_TEST_SUCCEEDED:
|
/external/google-breakpad/src/common/windows/ |
D | http_upload.cc | 71 int *response_code) { in SendRequest() argument 72 if (response_code) { in SendRequest() 73 *response_code = 0; in SendRequest() 183 if (response_code) { in SendRequest() 184 *response_code = http_response; in SendRequest()
|
D | http_upload.h | 74 int *response_code);
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | http_request_fake.h | 59 Status response_status, uint64 response_code) in FakeHttpRequest() argument 61 response_code) {} 70 uint64 response_code) in FakeHttpRequest() argument 76 response_code_(response_code) {} in FakeHttpRequest()
|
D | curl_http_request_test.cc | 39 FakeLibCurl(const string& response_content, uint64 response_code) in FakeLibCurl() argument 40 : response_content_(response_content), response_code_(response_code) {} in FakeLibCurl() 41 FakeLibCurl(const string& response_content, uint64 response_code, in FakeLibCurl() argument 45 response_code_(response_code), in FakeLibCurl() 48 FakeLibCurl(const string& response_content, uint64 response_code, in FakeLibCurl() argument 51 response_code_(response_code), in FakeLibCurl() 717 uint64 response_code) in StatsTestFakeLibCurl() argument 718 : FakeLibCurl(response_content, response_code), stats_(stats) {} in StatsTestFakeLibCurl()
|
D | curl_http_request.cc | 630 uint64 response_code = 0; in CURLcodeToStatus() local 632 curl_, CURLINFO_RESPONSE_CODE, &response_code); in CURLcodeToStatus() 636 if (get_response_result == CURLE_OK && response_code == 416) { in CURLcodeToStatus()
|
/external/google-breakpad/src/tools/windows/symupload/ |
D | symupload.cc | 234 int response_code; in wmain() local 238 nullptr, &response_code)) { in wmain() 242 argv[currentarg], response_code); in wmain()
|
/external/curl/tests/data/ |
D | test1239 | 34 HTTP with -z + -w response_code and simulated 304 37 http://%HOSTIP:%HTTPPORT/1239 -z "-dec 12 12:00:00 1999 GMT" -w '%{response_code}'
|
D | test1429 | 38 http://%HOSTIP:%HTTPPORT/1429 --write-out '%{response_code}' --http0.9
|
D | test1089 | 46 …cts}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L
|
D | test1090 | 53 …cts}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L
|
D | test2046 | 55 …cts}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L
|
D | test2047 | 56 …cts}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L
|
/external/autotest/server/site_tests/firmware_Cr50U2fCommands/ |
D | firmware_Cr50U2fCommands.py | 139 response_code = get_bytes(result, VENDOR_CMD_RESPONSE_CODE_OFFSET, 142 if response_code != expected_response_code: 145 response_code))
|
/external/libevent/include/event2/ |
D | http_struct.h | 103 int response_code; /* HTTP Response code */ member
|
/external/vboot_reference/tests/ |
D | tlcl_tests.c | 62 static void SetResponse(int call_idx, uint32_t response_code, int rsp_size) in SetResponse() argument 67 ToTpmUint32(c->rsp_buf + 6, response_code); in SetResponse()
|
/external/python/apitools/apitools/base/py/ |
D | batch.py | 122 response_code = self.__http_response.status_code 123 return response_code not in self.__retryable_codes
|
/external/libevent/ |
D | http.c | 350 return (req->response_code != HTTP_NOCONTENT && in evhttp_response_needs_body() 351 req->response_code != HTTP_NOTMODIFIED && in evhttp_response_needs_body() 352 (req->response_code < 100 || req->response_code >= 200) && in evhttp_response_needs_body() 525 req->major, req->minor, req->response_code, in evhttp_make_header_response() 650 req->response_code = HTTP_ENTITYTOOLARGE; in evhttp_connection_incoming_fail() 653 req->response_code = HTTP_BADREQUEST; in evhttp_connection_incoming_fail() 1666 req->response_code = atoi(number); in evhttp_parse_response_line() 1667 if (!evhttp_valid_response_code(req->response_code)) { in evhttp_parse_response_line() 2292 if (req->response_code == 100) { in evhttp_read_header() 2300 __func__, req->response_code)); in evhttp_read_header() [all …]
|
/external/f2fs-tools/tools/sg_write_buffer/include/ |
D | sg_lib.h | 167 unsigned char response_code; /* permit: 0x0, 0x70, 0x71, 0x72, 0x73 */ member
|
/external/libevent/test/ |
D | regress_rpc.c | 170 if (req->response_code != HTTP_SERVUNAVAIL) { in rpc_postrequest_failure() 235 if (req->response_code != HTTP_OK) { in rpc_postrequest_done()
|
/external/curl/lib/ |
D | mk-ca-bundle.pl | 312 my @out = `curl -w %{response_code} $proto $quiet -o "$txt" "$url"`;
|