Home
last modified time | relevance | path

Searched refs:max_workers (Results 1 – 5 of 5) sorted by relevance

/aosp12/art/runtime/
H A Dthread_pool.cc225 void ThreadPool::SetMaxActiveWorkers(size_t max_workers) { in SetMaxActiveWorkers() argument
227 CHECK_LE(max_workers, GetThreadCount()); in SetMaxActiveWorkers()
228 max_active_workers_ = max_workers; in SetMaxActiveWorkers()
/aosp12/system/bt/gd/cert/
H A Dasync_subprocess_logger.py61 self.executor = concurrent.futures.ThreadPoolExecutor(max_workers=1)
/aosp12/packages/modules/Gki/
H A Ddownload_boot_prebuilt.py108 with futures.ThreadPoolExecutor(max_workers=10) as pool:
/aosp12/art/tools/
H A Drun-libcore-tests.py249 with concurrent.futures.ThreadPoolExecutor(max_workers=args.jobs) as pool:
/aosp12/art/test/testrunner/
H A Dtestrunner.py584 with concurrent.futures.ThreadPoolExecutor(max_workers=n_thread) as executor: