/art/runtime/ |
D | thread_pool.cc | 43 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, in ThreadPoolWorker() 113 void ThreadPool::AddTask(Thread* self, Task* task) { in AddTask() 122 void ThreadPool::RemoveAllTasks(Thread* self) { in RemoveAllTasks() 127 ThreadPool::ThreadPool(const char* name, in ThreadPool() function in art::ThreadPool 147 void ThreadPool::CreateThreads() { in CreateThreads() 164 void ThreadPool::WaitForWorkersToBeCreated() { in WaitForWorkersToBeCreated() 168 const std::vector<ThreadPoolWorker*>& ThreadPool::GetWorkers() { in GetWorkers() 174 void ThreadPool::DeleteThreads() { in DeleteThreads() 190 void ThreadPool::SetMaxActiveWorkers(size_t max_workers) { in SetMaxActiveWorkers() 196 ThreadPool::~ThreadPool() { in ~ThreadPool() [all …]
|
D | thread_pool.h | 30 class ThreadPool; variable 92 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size); 96 ThreadPool* const thread_pool_; 103 friend class ThreadPool; 108 class ThreadPool { 135 ThreadPool(const char* name, 139 virtual ~ThreadPool(); 207 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
|
D | thread_pool_test.cc | 64 ThreadPool thread_pool("Thread pool test thread pool", num_threads); in TEST_F() 79 ThreadPool thread_pool("Thread pool test thread pool", num_threads); in TEST_F() 104 ThreadPool thread_pool("Thread pool test thread pool", num_threads); in TEST_F() 127 TreeTask(ThreadPool* const thread_pool, AtomicInteger* count, int depth) in TreeTask() 146 ThreadPool* const thread_pool_; 154 ThreadPool thread_pool("Thread pool test thread pool", num_threads); in TEST_F() 195 ThreadPool thread_pool("Thread pool test thread pool", 1); in TEST_F() 207 ThreadPool thread_pool("Thread pool test thread pool", 1, true); in TEST_F()
|
D | barrier_test.cc | 63 ThreadPool thread_pool("Barrier test thread pool", num_threads); in TEST_F() 114 ThreadPool thread_pool("Barrier test thread pool", num_threads); in TEST_F()
|
D | oat_file_manager.h | 42 class ThreadPool; variable 192 std::unique_ptr<ThreadPool> verification_thread_pool_;
|
D | runtime.h | 105 class ThreadPool; variable 852 ThreadPool* GetThreadPool() const { in GetThreadPool() 857 ThreadPool* const thread_pool_; 915 ThreadPool* AcquireThreadPool() REQUIRES(!Locks::runtime_thread_pool_lock_); 1007 std::unique_ptr<ThreadPool> thread_pool_ GUARDED_BY(Locks::runtime_thread_pool_lock_);
|
D | monitor_test.cc | 269 ThreadPool thread_pool(pool_name, 3); in CommonWaitSetup() 350 ThreadPool thread_pool("the pool", 2); in TEST_F()
|
D | runtime.cc | 996 thread_pool_.reset(new ThreadPool("Runtime", num_workers, /*create_peers=*/false, kStackSize)); in InitNonZygoteOrPostFork() 2790 std::unique_ptr<ThreadPool> thread_pool; in DeleteThreadPool() 2800 ThreadPool* Runtime::AcquireThreadPool() { in AcquireThreadPool()
|
D | oat_file_manager.cc | 1006 new ThreadPool("Verification thread pool", /* num_threads= */ 1)); in RunBackgroundVerification()
|
D | oat_file_assistant_test.cc | 1250 ThreadPool thread_pool("Oat file assistant test thread pool", kNumThreads); in TEST_F()
|
/art/dex2oat/driver/ |
D | compiler_driver.h | 243 ThreadPool* thread_pool, 263 ThreadPool* thread_pool, 274 ThreadPool* thread_pool, 326 std::unique_ptr<ThreadPool> parallel_thread_pool_; 329 std::unique_ptr<ThreadPool> single_thread_pool_;
|
D | compiler_driver.cc | 650 ThreadPool* resolve_thread_pool = force_determinism in Resolve() 1403 ThreadPool* thread_pool) in ParallelCompilationManager() 1504 ThreadPool* const thread_pool_; 1679 ThreadPool* thread_pool, in ResolveDexFile() 1850 ThreadPool* verify_thread_pool = in Verify() 2006 ThreadPool* thread_pool, in VerifyDexFile() 2073 ThreadPool* thread_pool, in SetVerifiedDexFile() 2463 ThreadPool* init_thread_pool = force_determinism in InitializeClasses() 2563 ThreadPool* thread_pool, in CompileDexFile() 2809 new ThreadPool("Compiler driver thread pool", parallel_count)); in InitializeThreadPools() [all …]
|
/art/runtime/gc/ |
D | task_processor_test.cc | 66 ThreadPool thread_pool("task processor test", 1U); in TEST_F() 136 ThreadPool thread_pool("task processor test", 1U); in TEST_F()
|
D | heap.h | 57 class ThreadPool; variable 743 ThreadPool* GetThreadPool() { in GetThreadPool() 1404 std::unique_ptr<ThreadPool> thread_pool_;
|
D | heap.cc | 1005 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads)); in CreateThreadPool()
|
/art/runtime/jit/ |
D | jit.h | 291 ThreadPool* GetThreadPool() const { in GetThreadPool() 353 std::unique_ptr<ThreadPool> thread_pool_;
|
D | jit.cc | 308 std::unique_ptr<ThreadPool> pool; in DeleteThreadPool() 702 thread_pool_.reset(new ThreadPool("Jit thread pool", 1, kJitPoolNeedsPeers)); in CreateThreadPool()
|
/art/dex2oat/linker/ |
D | elf_writer_quick.cc | 132 std::unique_ptr<ThreadPool> debug_info_thread_pool_; 260 debug_info_thread_pool_ = std::make_unique<ThreadPool>("Mini-debug-info writer", 1); in PrepareDebugInfo()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 673 MarkStackTask(ThreadPool* thread_pool, in MarkStackTask() 769 ThreadPool* const thread_pool_; 831 CardScanTask(ThreadPool* thread_pool, in CardScanTask() 882 ThreadPool* thread_pool = GetHeap()->GetThreadPool(); in ScanGrayObjects() 996 RecursiveMarkTask(ThreadPool* thread_pool, in RecursiveMarkTask() 1034 ThreadPool* thread_pool = heap_->GetThreadPool(); in RecursiveMark() 1394 ThreadPool* thread_pool = GetHeap()->GetThreadPool(); in ProcessMarkStackParallel()
|
/art/runtime/gc/space/ |
D | large_object_space_test.cc | 164 ThreadPool thread_pool("Large object space test thread pool", kNumThreads); in RaceTest()
|
D | image_space.cc | 973 ThreadPool* const pool = stpu.GetThreadPool(); in LoadImageFile()
|