Home
last modified time | relevance | path

Searched refs:reporthook (Results 1 – 7 of 7) sorted by relevance

/external/boringssl/src/util/bot/
Dupdate_clang.py42 urllib.urlretrieve(url, path, reporthook=report)
/external/python/cpython2/Lib/
Durllib.py90 def urlretrieve(url, filename=None, reporthook=None, data=None, context=None): argument
98 return opener.retrieve(url, filename, reporthook, data)
230 def retrieve(self, url, filename=None, reporthook=None, data=None): argument
270 if reporthook:
271 reporthook(blocknum, bs, size)
279 if reporthook:
280 reporthook(blocknum, bs, size)
1666 def reporthook(blocknum, blocksize, totalsize): function
/external/boringssl/src/util/bot/go/
Dbootstrap.py153 urllib.urlretrieve(url, path, reporthook=report)
/external/python/cpython2/Doc/library/
Durllib.rst152 .. function:: urlretrieve(url[, filename[, reporthook[, data]]])
361 .. method:: retrieve(url[, filename[, reporthook[, data]]])
371 URL. If *reporthook* is given, it must be a function accepting three numeric
373 network. *reporthook* is ignored for local URLs.
/external/python/cpython2/Lib/test/
Dtest_urllib.py519 'http://example.com', reporthook=_reporthook)
/external/python/cpython2/Misc/
DNEWS4446 when reporthook is None. Patch by Jyrki Pulliainen.
DHISTORY1737 - Patch #810023: Fix off-by-one bug in urllib.urlretrieve reporthook