Searched refs:Run (Results 1 - 25 of 29) sorted by relevance

12

/art/runtime/
H A Dclosure.h27 virtual void Run(Thread* self) = 0;
H A Dsignal_catcher.h44 static void* Run(void* arg);
H A Dthread_pool.cc48 void ThreadPoolWorker::Run() { function in class:art::ThreadPoolWorker
53 task->Run(self);
63 worker->Run();
182 task->Run(self);
206 void WorkStealingWorker::Run() { function in class:art::WorkStealingWorker
220 stealing_task->Run(self);
H A Dbarrier_test.cc35 void Run(Thread* self) { function in class:art::CheckWaitTask
94 void Run(Thread* self) { function in class:art::CheckPassTask
H A Dthread_pool_test.cc31 void Run(Thread* self) { function in class:art::CountTask
112 void Run(Thread* self) { function in class:art::TreeTask
H A Dthread_pool.h52 virtual void Run();
163 virtual void Run();
H A Dmonitor_test.cc113 void Run(Thread* self) { function in class:art::CreateTask
187 void Run(Thread* self) { function in class:art::UseTask
225 void Run(Thread* self) { function in class:art::InterruptTask
267 void Run(Thread* self) { function in class:art::WatchdogTask
H A Dsignal_catcher.cc72 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread");
161 // Run the checkpoints after resuming the threads to prevent deadlocks if the checkpoint function
194 void* SignalCatcher::Run(void* arg) { function in class:art::SignalCatcher
H A Dthread_list.cc237 // Run the checkpoint on ourself while we wait for threads to suspend.
238 checkpoint_function->Run(self);
240 // Run the checkpoint on the suspended threads.
256 checkpoint_function->Run(thread);
/art/compiler/optimizing/
H A Dssa_phi_elimination.h33 void Run();
55 void Run();
H A Dssa_type_propagation.h30 void Run();
H A Dssa_phi_elimination.cc21 void SsaDeadPhiElimination::Run() { function in class:art::SsaDeadPhiElimination
72 void SsaRedundantPhiElimination::Run() { function in class:art::SsaRedundantPhiElimination
H A Dcodegen_test.cc51 static void Run(const InternalCodeAllocator& allocator, function in namespace:art
83 Run(allocator, *codegen, has_result, expected);
89 Run(allocator, *codegen, has_result, expected);
95 Run(allocator, *codegen, has_result, expected);
H A Doptimizing_compiler.cc136 SsaRedundantPhiElimination(graph).Run();
137 SsaDeadPhiElimination(graph).Run();
153 // Run these phases to get some test coverage.
H A Dssa_type_propagation.cc49 void SsaTypePropagation::Run() { function in class:art::SsaTypePropagation
H A Dssa_builder.cc46 type_propagation.Run();
H A Dgraph_visualizer.cc184 void Run() { function in class:art::HGraphVisualizerPrinter
288 printer.Run();
/art/runtime/gc/allocator/
H A Drosalloc.h151 class Run { class in class:art::gc::allocator::RosAlloc
176 Run temp;
379 size_t operator()(const RosAlloc::Run* r) const {
385 bool operator()(const RosAlloc::Run* r1, const RosAlloc::Run* r2) const {
426 std::set<Run*> non_full_runs_[kNumOfSizeBrackets];
429 std::unordered_set<Run*, hash_run, eq_run> full_runs_[kNumOfSizeBrackets];
434 static Run* dedicated_full_run_;
440 Run* current_runs_[kNumOfSizeBrackets];
500 size_t FreeFromRun(Thread* self, void* ptr, Run* ru
[all...]
H A Drosalloc.cc47 RosAlloc::Run* RosAlloc::dedicated_full_run_ =
48 reinterpret_cast<RosAlloc::Run*>(dedicated_full_run_storage_);
489 Run* run = nullptr;
512 run = reinterpret_cast<Run*>(base_ + pm_idx * kPageSize);
535 RosAlloc::Run* RosAlloc::AllocRun(Thread* self, size_t idx) {
536 RosAlloc::Run* new_run = nullptr;
539 new_run = reinterpret_cast<Run*>(AllocPages(self, numOfPages[idx], kPageMapRun));
570 RosAlloc::Run* RosAlloc::RefillRun(Thread* self, size_t idx) {
572 std::set<Run*>* const bt = &non_full_runs_[idx];
576 Run* non_full_ru
[all...]
/art/runtime/gc/collector/
H A Dgarbage_collector.h131 // Run the garbage collector.
132 void Run(GcCause gc_cause, bool clear_soft_references);
179 // Run all of the GC phases.
H A Dgarbage_collector.cc74 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { function in class:art::gc::collector::GarbageCollector
80 RunPhases(); // Run all the GC phases.
H A Dmark_sweep.cc648 virtual void Run(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
703 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
710 MarkStackTask::Run(self);
833 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
837 MarkStackTask::Run(self);
958 virtual void Run(Thread* thread) OVERRIDE NO_THREAD_SAFETY_ANALYSIS {
/art/runtime/gc/space/
H A Dlarge_object_space_test.cc103 void Run(Thread* self) { function in class:art::gc::space::AllocRaceTask
/art/runtime/jdwp/
H A Djdwp_main.cc403 state->Run();
407 void JdwpState::Run() { function in class:art::JDWP::JdwpState
H A Djdwp.h272 void Run()

Completed in 210 milliseconds

12