Searched refs:reporthook (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/util/bot/ |
D | update_clang.py | 42 urllib.urlretrieve(url, path, reporthook=report)
|
/external/python/cpython2/Lib/ |
D | urllib.py | 90 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/ |
D | bootstrap.py | 153 urllib.urlretrieve(url, path, reporthook=report)
|
/external/python/cpython2/Doc/library/ |
D | urllib.rst | 152 .. 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/ |
D | test_urllib.py | 519 'http://example.com', reporthook=_reporthook)
|
/external/python/cpython2/Misc/ |
D | NEWS | 4446 when reporthook is None. Patch by Jyrki Pulliainen.
|
D | HISTORY | 1737 - Patch #810023: Fix off-by-one bug in urllib.urlretrieve reporthook
|