Home
last modified time | relevance | path

Searched refs:Increment (Results 1 – 14 of 14) sorted by relevance

/art/runtime/
Dbarrier.cc34 template void Barrier::Increment<Barrier::kAllowHoldingLocks>(Thread* self, int delta);
35 template void Barrier::Increment<Barrier::kDisallowHoldingLocks>(Thread* self, int delta);
43 Increment(self, -1); in Wait()
52 void Barrier::Increment(Thread* self, int delta) { in Increment() function in art::Barrier
72 bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) { in Increment() function in art::Barrier
Dbarrier.h61 void Increment(Thread* self, int delta) REQUIRES(!lock_);
65 bool Increment(Thread* self, int delta, uint32_t timeout_ms) REQUIRES(!lock_);
Dbarrier_test.cc73 timeout_barrier.Increment(self, 1, 100); // sleep 100 msecs in TEST_F()
125 barrier.Increment(self, expected_total_tasks); in TEST_F()
Dcha.cc268 barrier_.Increment(self, threads_running_checkpoint); in WaitForThreadsToRunThroughCheckpoint()
Dthread_list.cc235 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint()
461 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); in RunEmptyCheckpoint()
Dthread.cc1443 barrier_.Increment<Barrier::kDisallowHoldingLocks>(self, 1); in Wait()
1445 barrier_.Increment<Barrier::kAllowHoldingLocks>(self, 1); in Wait()
/art/dexlayout/
Ddexdiag.cc91 void Increment(uint16_t type) { in Increment() function in art::PageCount
208 page_counts->Increment(type); in ProcessPageMap()
239 mapped_pages.Increment(FindSectionTypeForPage(dex_page_offset, sections)); in DisplayDexStatistics()
/art/runtime/gc/collector/
Dconcurrent_copying.cc257 gc_barrier_->Increment(self, barrier_count); in ActivateReadBarrierEntrypoints()
625 gc_barrier_->Increment(self, barrier_count); in FlipThreadRoots()
1007 gc_barrier_->Increment(self, barrier_count); in IssueDisableMarkingCheckpoint()
1377 gc_barrier_->Increment(self, barrier_count); in RevokeThreadLocalMarkStacks()
Dmark_sweep.cc1200 gc_barrier_->Increment(self, barrier_count); in MarkRootsCheckpoint()
/art/openjdkjvmti/
Dti_stack.cc333 closure.barrier.Increment(self, barrier_count); in RunCheckpointAndWait()
/art/runtime/jit/
Djit_code_cache.cc1186 barrier.Increment(self, threads_running_checkpoint); in MarkCompiledCodeOnThreadStacks()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1842 ld $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1916 lw $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
/art/runtime/gc/
Dheap.cc1315 barrier.Increment(self, barrier_count); in TrimIndirectReferenceTables()