Searched refs:resp_headers (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Derrors.py96 resp_headers=None, extras=None):
104 resp_headers: HTTP response headers.
122 (expected, status, path, headers, resp_headers, extras))
H A Dcloudstorage_api.py115 status, resp_headers, _ = api.delete_object(filename)
116 errors.check_status(status, [204], filename, resp_headers=resp_headers)
139 errors.check_status(status, [200], filename, resp_headers=headers)
180 status, resp_headers, _ = api.put_object(
182 errors.check_status(status, [200], src, metadata, resp_headers)
319 status, resp_headers, content = self._get_bucket_fut.get_result()
320 errors.check_status(status, [200], self._path, resp_headers=resp_headers,
H A Dstorage_api.py213 errors.check_status(status, [200], path, resp_headers=headers)
432 status, resp_headers, content = yield self._api.get_object_async(
434 errors.check_status(status, [200, 206], self._path, headers, resp_headers)
435 self._check_etag(resp_headers.get('etag'))
638 status, resp_headers, _ = self._api.post_object(path, headers=headers)
639 errors.check_status(status, [201], path, headers, resp_headers)
640 loc = resp_headers.get('location')
/external/chromium_org/net/http/
H A Dhttp_transaction_test_util.cc387 std::string resp_headers = t->response_headers; local
389 received_bytes_ = resp_status.size() + resp_headers.size() + resp_data.size();
391 (t->handler)(request, &resp_status, &resp_headers, &resp_data);
394 "%s\n%s\n", resp_status.c_str(), resp_headers.c_str());

Completed in 748 milliseconds