/art/runtime/ |
D | thread_pool_test.cc | 68 thread_pool.AddTask(self, new CountTask(&count)); in TEST_F() 83 thread_pool.AddTask(self, new CountTask(&count)); in TEST_F() 93 thread_pool.AddTask(self, new CountTask(&bad_count)); in TEST_F() 109 thread_pool.AddTask(self, new CountTask(&count)); in TEST_F() 134 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); in Run() 135 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); in Run() 157 thread_pool.AddTask(self, new TreeTask(&thread_pool, &count, depth)); in TEST_F() 196 thread_pool.AddTask(self, new NoPeerTask()); in TEST_F() 208 thread_pool.AddTask(self, new PeerTask()); in TEST_F()
|
D | monitor_test.cc | 270 thread_pool.AddTask(self, new CreateTask(test, create_sleep, c_millis, c_expected)); in CommonWaitSetup() 272 thread_pool.AddTask(self, new InterruptTask(test, use_sleep, static_cast<uint64_t>(u_millis))); in CommonWaitSetup() 274 thread_pool.AddTask(self, new UseTask(test, use_sleep, u_millis, u_expected)); in CommonWaitSetup() 276 thread_pool.AddTask(self, new WatchdogTask(test)); in CommonWaitSetup() 362 thread_pool.AddTask(self, new TryLockTask(obj1)); in TEST_F()
|
D | barrier_test.cc | 69 thread_pool.AddTask(self, new CheckWaitTask(&barrier, &count1, &count2)); in TEST_F() 120 thread_pool.AddTask(self, new CheckPassTask(&barrier, &count, num_sub_tasks)); in TEST_F()
|
D | thread_pool.h | 128 void AddTask(Thread* self, Task* task) REQUIRES(!task_queue_lock_);
|
D | thread_pool.cc | 142 void ThreadPool::AddTask(Thread* self, Task* task) { in AddTask() function in art::ThreadPool
|
D | oat_file_manager.cc | 802 verification_thread_pool_->AddTask(self, new BackgroundVerificationTask( in RunBackgroundVerification()
|
D | oat_file_assistant_test.cc | 1320 thread_pool.AddTask(self, task.get()); in TEST_F()
|
/art/runtime/gc/ |
D | task_processor_test.cc | 38 task_processor_->AddTask(self, in Run() 72 task_processor.AddTask(self, new RecursiveTask(&task_processor, &counter, kRecursion)); in TEST_F() 75 thread_pool.AddTask(self, new WorkUntilDoneTask(&task_processor, &done_running)); in TEST_F() 95 task_processor.AddTask(self, new RecursiveTask(&task_processor, &counter, kRecursion)); in TEST_F() 96 thread_pool.AddTask(self, new WorkUntilDoneTask(&task_processor, &done_running)); in TEST_F() 134 task_processor.AddTask(self, task); in TEST_F() 139 thread_pool.AddTask(self, new WorkUntilDoneTask(&task_processor, &done_running)); in TEST_F()
|
D | task_processor.h | 57 void AddTask(Thread* self, HeapTask* task) REQUIRES(!lock_);
|
D | task_processor.cc | 41 void TaskProcessor::AddTask(Thread* self, HeapTask* task) { in AddTask() function in art::gc::TaskProcessor
|
D | reference_processor.cc | 393 Runtime::Current()->GetHeap()->GetTaskProcessor()->AddTask( in CollectClearedReferences()
|
D | heap.cc | 3816 task_processor_->AddTask(self, new ConcurrentGCTask(NanoTime(), // Start straight away. in RequestConcurrentGC() 3983 task_processor_->AddTask(self, added_task); in RequestCollectorTransition() 4027 task_processor_->AddTask(self, added_task); in RequestTrim() 4686 GetTaskProcessor()->AddTask( in PostForkChildAction() 4693 GetTaskProcessor()->AddTask( in PostForkChildAction() 4703 GetTaskProcessor()->AddTask(self, in PostForkChildAction() 4736 GetTaskProcessor()->AddTask(self, task); in AddHeapTask()
|
/art/runtime/jit/ |
D | jit.cc | 1198 thread_pool_->AddTask(Thread::Current(), new ZygoteVerificationTask()); in CreateThreadPool() 1204 thread_pool_->AddTask(Thread::Current(), new ZygoteTask()); in CreateThreadPool() 1289 thread_pool_->AddTask(Thread::Current(), new JitProfileTask(dex_files, class_loader)); in RegisterDexFiles() 1331 thread_pool_->AddTask(self, task); in CompileMethodFromProfile() 1478 thread_pool_->AddTask( in EnqueueOptimizedCompilation() 1678 thread_pool_->AddTask(self, task); in AddPostBootTask() 1693 thread_pool_->AddTask(self, task); in BootCompleted() 1748 thread_pool_->AddTask( in MaybeEnqueueCompilation() 1784 thread_pool_->AddTask( in MaybeEnqueueCompilation() 1788 thread_pool_->AddTask( in MaybeEnqueueCompilation()
|
/art/runtime/gc/space/ |
D | large_object_space_test.cc | 166 thread_pool.AddTask(self, new AllocRaceTask(i, kNumIterations, 16 * KB, los)); in RaceTest()
|
D | image_space.cc | 1005 pool->AddTask(self, new FunctionTask(std::move(function))); in LoadImageFile()
|
/art/dex2oat/linker/ |
D | elf_writer_quick.cc | 259 debug_info_thread_pool_->AddTask(self, debug_info_task_.get()); in PrepareDebugInfo()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 782 thread_pool_->AddTask(Thread::Current(), task); in MarkStackPush() 940 thread_pool->AddTask(self, task); in ScanGrayObjects() 1064 thread_pool->AddTask(self, task); in RecursiveMark() 1401 thread_pool->AddTask(self, new MarkStackTask<false>(thread_pool, this, delta, it)); in ProcessMarkStackParallel()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 1407 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn)); in ForAllLambda()
|