Home
last modified time | relevance | path

Searched refs:threads (Results 1 – 3 of 3) sorted by relevance

/build/make/tools/releasetools/
Dblockimgdiff.py241 def __init__(self, tgt, src=None, threads=None, version=4, argument
243 if threads is None:
244 threads = multiprocessing.cpu_count() // 2
245 if threads == 0:
246 threads = 1
247 self.threads = threads
1134 if self.threads > 1:
1135 logger.info("Computing patches (using %d threads)...", self.threads)
1203 threads = [threading.Thread(target=diff_worker)
1204 for _ in range(self.threads)]
[all …]
Dcommon.py3054 threads = [threading.Thread(target=worker)
3056 for th in threads:
3058 while threads:
3059 threads.pop().join()
3078 b = BlockImageDiff(tgt, src, threads=OPTIONS.worker_threads,
/build/soong/scripts/
Dstrip.sh86 "${XZ}" --keep --block-size=64k --threads=0 "${outfile}.mini_debuginfo"