Home
last modified time | relevance | path

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

/art/runtime/
Dbarrier.cc35 template void Barrier::Increment<Barrier::kAllowHoldingLocks>(Thread* self, int delta);
36 template void Barrier::Increment<Barrier::kDisallowHoldingLocks>(Thread* self, int delta);
44 Increment(self, -1); in Wait()
53 void Barrier::Increment(Thread* self, int delta) { in Increment() function in art::Barrier
73 bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) { in Increment() function in art::Barrier
Dbarrier.h67 void Increment(Thread* self, int delta) REQUIRES(!GetLock());
71 bool Increment(Thread* self, int delta, uint32_t timeout_ms) REQUIRES(!GetLock());
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()
Dthread_pool.cc190 creation_barier_.Increment(Thread::Current(), 0); in WaitForWorkersToBeCreated()
Dthread_list.cc235 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint()
464 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); in RunEmptyCheckpoint()
Dcha.cc268 barrier_.Increment(self, threads_running_checkpoint); in WaitForThreadsToRunThroughCheckpoint()
Ddebugger.cc354 finish_barrier.Increment(self, checkpoints); in DdmSetThreadNotification()
Dthread.cc1632 barrier_.Increment<Barrier::kDisallowHoldingLocks>(self, 1); in Wait()
1634 barrier_.Increment<Barrier::kAllowHoldingLocks>(self, 1); in Wait()
Dclass_linker.cc389 maybe_barrier->Increment(self, wait_count); in MakeInitializedClassesVisiblyInitialized()
/art/dexlayout/
Ddexdiag.cc96 void Increment(uint16_t type) { in Increment() function in art::PageCount
215 page_counts->Increment(type); in ProcessPageMap()
246 mapped_pages.Increment(FindSectionTypeForPage(dex_page_offset, sections)); in DisplayDexStatistics()
/art/openjdkjvmti/
Dalloc_manager.cc205 barrier.Increment(self, requested); in PauseAllocations()
Dti_stack.cc374 closure.barrier.Increment(self, barrier_count); in RunCheckpointAndWait()
Dti_redefine.cc2304 release_barrier_.Increment</*locks=*/art::Barrier::kAllowHoldingLocks>(self_, count); in Release()
2357 barrier_.Increment(self_, t); in WaitFor()
/art/runtime/gc/collector/
Dconcurrent_copying.cc290 gc_barrier_->Increment(self, barrier_count); in ActivateReadBarrierEntrypoints()
749 gc_barrier_->Increment(self, barrier_count); in FlipThreadRoots()
1028 gc_barrier_->Increment(self, barrier_count); in CaptureThreadRootsForMarking()
1719 gc_barrier_->Increment(self, barrier_count); in IssueDisableMarkingCheckpoint()
2009 gc_barrier_->Increment(self, barrier_count); in RevokeThreadLocalMarkStacks()
Dmark_sweep.cc1201 gc_barrier_->Increment(self, barrier_count); in MarkRootsCheckpoint()
/art/runtime/jit/
Djit_code_cache.cc1109 barrier.Increment(self, threads_running_checkpoint); in MarkCompiledCodeOnThreadStacks()
/art/runtime/gc/
Dheap.cc1483 barrier.Increment(self, barrier_count); in TrimIndirectReferenceTables()