/art/test/116-nodex2oat/ |
D | expected.txt | 1 Run -Xnodex2oat 3 Run -Xdex2oat 5 Run default
|
/art/test/119-noimage-patchoat/ |
D | expected.txt | 1 Run -Xnoimage-dex2oat -Xpatchoat:/system/bin/false 3 Run -Ximage-dex2oat 5 Run default
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 47 RosAlloc::Run* RosAlloc::dedicated_full_run_ = 48 reinterpret_cast<RosAlloc::Run*>(dedicated_full_run_storage_); 489 Run* run = nullptr; in FreeInternal() 512 run = reinterpret_cast<Run*>(base_ + pm_idx * kPageSize); in FreeInternal() 535 RosAlloc::Run* RosAlloc::AllocRun(Thread* self, size_t idx) { in AllocRun() 536 RosAlloc::Run* new_run = nullptr; in AllocRun() 539 new_run = reinterpret_cast<Run*>(AllocPages(self, numOfPages[idx], kPageMapRun)); in AllocRun() 570 RosAlloc::Run* RosAlloc::RefillRun(Thread* self, size_t idx) { in RefillRun() 572 std::set<Run*>* const bt = &non_full_runs_[idx]; in RefillRun() 576 Run* non_full_run = *it; in RefillRun() [all …]
|
D | rosalloc.h | 151 class Run { 176 Run temp; in fixed_header_size() 379 size_t operator()(const RosAlloc::Run* r) const { in operator() 385 bool operator()(const RosAlloc::Run* r1, const RosAlloc::Run* r2) const { in operator() 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* run) 504 Run* AllocRun(Thread* self, size_t idx) LOCKS_EXCLUDED(lock_); [all …]
|
/art/test/118-noimage-dex2oat/ |
D | expected.txt | 1 Run -Xnoimage-dex2oat 3 Run -Ximage-dex2oat 5 Run default
|
/art/test/117-nopatchoat/ |
D | expected.txt | 1 Run without dex2oat/patchoat 4 Run with dexoat/patchoat 7 Run default
|
/art/compiler/optimizing/ |
D | ssa_phi_elimination.h | 33 void Run(); 55 void Run();
|
D | codegen_test.cc | 51 static void Run(const InternalCodeAllocator& allocator, in Run() function 83 Run(allocator, *codegen, has_result, expected); in TestCode() 89 Run(allocator, *codegen, has_result, expected); in TestCode() 95 Run(allocator, *codegen, has_result, expected); in TestCode()
|
D | ssa_phi_elimination.cc | 21 void SsaDeadPhiElimination::Run() { in Run() function in art::SsaDeadPhiElimination 72 void SsaRedundantPhiElimination::Run() { in Run() function in art::SsaRedundantPhiElimination
|
D | ssa_type_propagation.h | 30 void Run();
|
D | optimizing_compiler.cc | 136 SsaRedundantPhiElimination(graph).Run(); in TryCompile() 137 SsaDeadPhiElimination(graph).Run(); in TryCompile()
|
D | ssa_type_propagation.cc | 49 void SsaTypePropagation::Run() { in Run() function in art::SsaTypePropagation
|
D | graph_visualizer.cc | 184 void Run() { in Run() function in art::HGraphVisualizerPrinter 288 printer.Run(); in DumpGraph()
|
/art/runtime/ |
D | thread_pool.cc | 48 void ThreadPoolWorker::Run() { in Run() function in art::ThreadPoolWorker 53 task->Run(self); in Run() 63 worker->Run(); in Callback() 182 task->Run(self); in Wait() 206 void WorkStealingWorker::Run() { in Run() function in art::WorkStealingWorker 220 stealing_task->Run(self); in Run()
|
D | closure.h | 27 virtual void Run(Thread* self) = 0;
|
D | barrier_test.cc | 35 void Run(Thread* self) { in Run() function in art::CheckWaitTask 94 void Run(Thread* self) { in Run() function in art::CheckPassTask
|
D | thread_pool_test.cc | 31 void Run(Thread* self) { in Run() function in art::CountTask 112 void Run(Thread* self) { in Run() function in art::TreeTask
|
D | monitor_test.cc | 113 void Run(Thread* self) { in Run() function in art::CreateTask 187 void Run(Thread* self) { in Run() function in art::UseTask 225 void Run(Thread* self) { in Run() function in art::InterruptTask 267 void Run(Thread* self) { in Run() function in art::WatchdogTask
|
D | thread_pool.h | 52 virtual void Run(); 163 virtual void Run();
|
D | signal_catcher.h | 44 static void* Run(void* arg);
|
D | signal_catcher.cc | 72 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread"); in SignalCatcher() 194 void* SignalCatcher::Run(void* arg) { in Run() function in art::SignalCatcher
|
/art/test/ |
D | README.txt | 4 single test. Run "./run-test" with no arguments to see command flags;
|
/art/runtime/gc/collector/ |
D | garbage_collector.h | 132 void Run(GcCause gc_cause, bool clear_soft_references);
|
D | mark_sweep.cc | 648 virtual void Run(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) in Run() function in art::gc::collector::MarkStackTask 703 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS { in Run() function in art::gc::collector::CardScanTask 710 MarkStackTask::Run(self); in Run() 833 virtual void Run(Thread* self) NO_THREAD_SAFETY_ANALYSIS { in Run() function in art::gc::collector::RecursiveMarkTask 837 MarkStackTask::Run(self); in Run() 958 virtual void Run(Thread* thread) OVERRIDE NO_THREAD_SAFETY_ANALYSIS { in Run() function in art::gc::collector::CheckpointMarkThreadRoots
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 403 state->Run(); in StartJdwpThread() 407 void JdwpState::Run() { in Run() function in art::JDWP::JdwpState
|