Home
last modified time | relevance | path

Searched refs:http_response (Results 1 – 8 of 8) sorted by relevance

/external/libmicrohttpd/src/examples/
Dmhd2spdy_http.c298 proxy->http_response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN, in http_cb_request()
304 if (NULL == proxy->http_response) in http_cb_request()
307 if(MHD_NO == MHD_add_response_header (proxy->http_response, in http_cb_request()
310 if(MHD_NO == MHD_add_response_header (proxy->http_response, in http_cb_request()
313 if(MHD_NO == MHD_add_response_header (proxy->http_response, in http_cb_request()
352 if(MHD_NO == MHD_add_response_header (proxy->http_response, in http_create_response()
360 if(MHD_NO == MHD_queue_response (proxy->http_connection, proxy->status, proxy->http_response)){ in http_create_response()
367 MHD_destroy_response (proxy->http_response); in http_create_response()
368 proxy->http_response = NULL; in http_create_response()
390 if(NULL != proxy->http_response) in http_cb_request_completed()
[all …]
Dmhd2spdy_structures.h106 struct MHD_Response *http_response; member
/external/google-breakpad/src/client/windows/sender/
Dcrash_report_sender.cc70 int http_response = 0; in SendCrashReport() local
73 &http_response); in SendCrashReport()
78 } else if (http_response >= 400 && http_response < 500) { in SendCrashReport()
/external/autotest/frontend/afe/
Dviews.py73 http_response = HttpResponse(content)
76 http_response[header] = value
77 return http_response
/external/google-breakpad/src/common/windows/
Dhttp_upload.cc182 int http_response = wcstol(http_status, NULL, 10); in SendRequest() local
184 *response_code = http_response; in SendRequest()
187 bool result = (http_response == 200); in SendRequest()
/external/python/cpython2/Lib/test/
Dtest_urllib2.py889 newr = h.http_response(req, r)
893 newr = h.http_response(req, r)
897 newr = h.http_response(req, r)
902 self.assertTrue(h.http_response(req, r) is None)
917 newr = h.http_response(req, r)
/external/python/cpython2/Lib/
Durllib2.py541 def http_response(self, request, response): member in HTTPErrorProcessor
552 https_response = http_response
1256 def http_response(self, request, response): member in HTTPCookieProcessor
1261 https_response = http_response
/external/python/cpython2/Doc/library/
Durllib2.rst934 .. method:: HTTPErrorProcessor.http_response()
950 The behavior is same as :meth:`http_response`.