HomeSort by relevance Sort by last modified time
    Searched refs:http_response (Results 1 - 19 of 19) sorted by null

  /external/python/apitools/apitools/base/py/
exceptions.py 77 def FromResponse(cls, http_response):
78 return cls(http_response.info, http_response.content,
79 http_response.request_url)
151 def FromResponse(cls, http_response):
152 return cls(http_response.info, http_response.content,
153 http_response.request_url, http_response.retry_after)
base_api.py 594 def __ProcessHttpResponse(self, method_config, http_response, request):
596 if http_response.status_code not in (http_client.OK,
599 http_response.info, http_response.content,
600 http_response.request_url, method_config, request)
601 if http_response.status_code == http_client.NO_CONTENT:
604 http_response = http_wrapper.Response(
605 info=http_response.info, content='{}',
606 request_url=http_response.request_url)
608 return http_response.conten
    [all...]
base_api_test.py 124 http_response = http_wrapper.Response(
129 method_config, http_response))
132 http_response.content,
133 service.ProcessHttpResponse(method_config, http_response))
transfer.py 835 http_response = http_wrapper.MakeRequest(http, http_request,
837 if http_response.status_code != http_client.OK:
838 raise exceptions.HttpError.FromResponse(http_response)
    [all...]
batch.py 125 def HandleResponse(self, http_response, exception):
132 http_response: Deserialized http_wrapper.Response object.
137 self.__http_response = http_response
197 batch_request_callback: function of (http_response, exception) passed
batch_test.py 68 def ProcessHttpResponse(self, _, http_response):
69 return http_response
  /external/google-breakpad/src/client/windows/sender/
crash_report_sender.cc 70 int http_response = 0; local
73 &http_response);
78 } else if (http_response >= 400 && http_response < 500) {
  /external/autotest/frontend/afe/
views.py 73 http_response = HttpResponse(content)
76 http_response[header] = value
77 return http_response
  /external/grpc-grpc/src/core/ext/filters/client_channel/
http_connect_handshaker.cc 62 grpc_http_response http_response; member in struct:http_connect_handshaker
78 grpc_http_response_destroy(&handshaker->http_response);
206 if (handshaker->http_response.status < 200 ||
207 handshaker->http_response.status >= 300) {
210 handshaker->http_response.status);
344 &handshaker->http_response);
  /external/grpc-grpc/test/core/security/
jwt_verifier_test.cc 311 static grpc_httpcli_response http_response(int status, char* body) { function
331 *response = http_response(200, good_google_email_keys());
377 *response = http_response(200, gpr_strdup(good_jwk_set));
410 *response = http_response(200, gpr_strdup(good_jwk_set));
422 *response = http_response(200, gpr_strdup(good_openid_config));
465 *response = http_response(200, gpr_strdup("{\"bad\": \"stuff\"}"));
credentials_test.cc 147 static grpc_httpcli_response http_response(int status, const char* body) { function
206 http_response(200, valid_oauth2_json_response);
223 http_response(401, valid_oauth2_json_response);
234 grpc_httpcli_response response = http_response(200, "");
246 http_response(200,
260 grpc_httpcli_response response = http_response(200,
275 http_response(200,
291 http_response(200,
550 *response = http_response(200, valid_oauth2_json_response);
559 *response = http_response(403, "Not Authorized.")
    [all...]
  /external/google-breakpad/src/common/windows/
http_upload.cc 182 int http_response = wcstol(http_status, NULL, 10); local
184 *response_code = http_response;
187 bool result = (http_response == 200);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urllib2.py 506 def http_response(self, request, response): member in class:HTTPErrorProcessor
517 https_response = http_response
1222 def http_response(self, request, response): member in class:HTTPCookieProcessor
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_urllib2.py 562 ("http_response", "return response")],
564 ("http_response", "return response")],
574 (handlers[0], "http_response"), (handlers[1], "http_response")]
    [all...]
  /external/python/cpython2/Lib/test/
test_urllib2.py 582 ("http_response", "return response")],
584 ("http_response", "return response")],
594 (handlers[0], "http_response"), (handlers[1], "http_response")]
889 newr = h.http_response(req, r
    [all...]
  /development/apps/Development/src/com/android/development/
Connectivity.java 496 mHttpRequestResults = (TextView)findViewById(R.id.http_response);
732 ((TextView) findViewById(R.id.http_response)).setText(results);
  /external/python/cpython2/Lib/
urllib2.py 541 def http_response(self, request, response): member in class:HTTPErrorProcessor
552 https_response = http_response
1256 def http_response(self, request, response): member in class:HTTPCookieProcessor
    [all...]
  /external/python/cpython3/Lib/test/
test_urllib2.py 657 ("http_response", "return response")],
659 ("http_response", "return response")],
669 (handlers[0], "http_response"), (handlers[1], "http_response")]
    [all...]
  /external/python/cpython3/Lib/urllib/
request.py 634 def http_response(self, request, response): member in class:HTTPErrorProcessor
645 https_response = http_response
1007 def http_response(self, req, response): member in class:AbstractBasicAuthHandler
1377 def http_response(self, request, response): member in class:HTTPCookieProcessor
    [all...]

Completed in 1761 milliseconds