Searched refs:Increment (Results 1 – 14 of 14) sorted by relevance
/art/runtime/ |
D | barrier.cc | 34 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
|
D | barrier.h | 61 void Increment(Thread* self, int delta) REQUIRES(!lock_); 65 bool Increment(Thread* self, int delta, uint32_t timeout_ms) REQUIRES(!lock_);
|
D | barrier_test.cc | 73 timeout_barrier.Increment(self, 1, 100); // sleep 100 msecs in TEST_F() 125 barrier.Increment(self, expected_total_tasks); in TEST_F()
|
D | cha.cc | 268 barrier_.Increment(self, threads_running_checkpoint); in WaitForThreadsToRunThroughCheckpoint()
|
D | thread_list.cc | 235 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint() 461 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); in RunEmptyCheckpoint()
|
D | thread.cc | 1443 barrier_.Increment<Barrier::kDisallowHoldingLocks>(self, 1); in Wait() 1445 barrier_.Increment<Barrier::kAllowHoldingLocks>(self, 1); in Wait()
|
/art/dexlayout/ |
D | dexdiag.cc | 91 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/ |
D | concurrent_copying.cc | 257 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()
|
D | mark_sweep.cc | 1200 gc_barrier_->Increment(self, barrier_count); in MarkRootsCheckpoint()
|
/art/openjdkjvmti/ |
D | ti_stack.cc | 333 closure.barrier.Increment(self, barrier_count); in RunCheckpointAndWait()
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 1186 barrier.Increment(self, threads_running_checkpoint); in MarkCompiledCodeOnThreadStacks()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1842 ld $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1916 lw $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
|
/art/runtime/gc/ |
D | heap.cc | 1315 barrier.Increment(self, barrier_count); in TrimIndirectReferenceTables()
|