Home | History | Annotate | Download | only in httplib2

Lines Matching refs:cachekey

361 def _updateCache(request_headers, response_headers, content, cache, cachekey):
362 if cachekey:
366 cache.delete(cachekey)
396 cache.set(cachekey, text)
892 def _request(self, conn, host, absolute_uri, request_uri, method, body, headers, redirections, cachekey):
935 _updateCache(headers, response, content, self.cache, cachekey)
954 _updateCache(headers, response, content, self.cache, cachekey)
1024 cachekey = defrag_uri
1025 cached_value = self.cache.get(cachekey)
1039 self.cache.delete(cachekey)
1040 cachekey = None
1043 cachekey = None
1049 if method not in ["GET", "HEAD"] and self.cache and cachekey:
1051 self.cache.delete(cachekey)
1099 (response, new_content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
1112 _updateCache(headers, merged_response, content, self.cache, cachekey)
1120 self.cache.delete(cachekey)
1129 (response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)