Searched refs:Increment (Results 1 – 16 of 16) sorted by relevance
/art/runtime/ |
D | barrier.cc | 35 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
|
D | barrier.h | 67 void Increment(Thread* self, int delta) REQUIRES(!GetLock()); 71 bool Increment(Thread* self, int delta, uint32_t timeout_ms) REQUIRES(!GetLock());
|
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 | thread_pool.cc | 165 creation_barier_.Increment(Thread::Current(), 0); in WaitForWorkersToBeCreated()
|
D | cha.cc | 268 barrier_.Increment(self, threads_running_checkpoint); in WaitForThreadsToRunThroughCheckpoint()
|
D | thread_list.cc | 237 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint() 463 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); in RunEmptyCheckpoint()
|
D | thread.cc | 1624 barrier_.Increment<Barrier::kDisallowHoldingLocks>(self, 1); in Wait() 1626 barrier_.Increment<Barrier::kAllowHoldingLocks>(self, 1); in Wait()
|
D | runtime.cc | 2862 barrier.Increment(self, threads_running_checkpoint); in NotifyStartupCompleted()
|
/art/dexlayout/ |
D | dexdiag.cc | 96 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/runtime/gc/collector/ |
D | concurrent_copying.cc | 292 gc_barrier_->Increment(self, barrier_count); in ActivateReadBarrierEntrypoints() 749 gc_barrier_->Increment(self, barrier_count); in FlipThreadRoots() 1023 gc_barrier_->Increment(self, barrier_count); in CaptureThreadRootsForMarking() 1708 gc_barrier_->Increment(self, barrier_count); in IssueDisableMarkingCheckpoint() 1998 gc_barrier_->Increment(self, barrier_count); in RevokeThreadLocalMarkStacks()
|
D | mark_sweep.cc | 1201 gc_barrier_->Increment(self, barrier_count); in MarkRootsCheckpoint()
|
/art/openjdkjvmti/ |
D | ti_stack.cc | 357 closure.barrier.Increment(self, barrier_count); in RunCheckpointAndWait()
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 1501 barrier.Increment(self, threads_running_checkpoint); in MarkCompiledCodeOnThreadStacks()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1850 ld $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1925 lw $a2, THREAD_LOCAL_OBJECTS_OFFSET(rSELF) # Increment thread_local_objects.
|
/art/runtime/gc/ |
D | heap.cc | 1463 barrier.Increment(self, barrier_count); in TrimIndirectReferenceTables()
|