/external/lldb/test/functionalities/thread/break_after_join/ |
D | TestBreakAfterJoin.py | 80 self.assertTrue(thread1.IsStopped(), "Thread 1 didn't stop during breakpoint") 81 self.assertTrue(thread2.IsStopped(), "Thread 2 didn't stop during breakpoint") 82 self.assertTrue(thread3.IsStopped(), "Thread 3 didn't stop during breakpoint") 83 self.assertTrue(thread4.IsStopped(), "Thread 4 didn't stop during breakpoint") 84 self.assertTrue(thread5.IsStopped(), "Thread 5 didn't stop during breakpoint") 85 self.assertTrue(thread6.IsStopped(), "Thread 6 didn't stop during breakpoint")
|
/external/lldb/test/functionalities/thread/exit_during_break/ |
D | TestExitDuringBreak.py | 79 self.assertTrue(thread1.IsStopped(), "Thread 1 didn't stop during breakpoint") 80 self.assertTrue(thread2.IsStopped(), "Thread 2 didn't stop during breakpoint") 81 self.assertTrue(thread3.IsStopped(), "Thread 3 didn't stop during breakpoint") 82 self.assertTrue(thread4.IsStopped(), "Thread 4 didn't stop during breakpoint") 83 self.assertTrue(thread5.IsStopped(), "Thread 5 didn't stop during breakpoint")
|
/external/v8/src/heap/ |
D | incremental-marking-job.cc | 21 DCHECK(!heap->incremental_marking()->IsStopped()); in Start() 74 if (incremental_marking->IsStopped()) { in Step() 88 return incremental_marking->IsStopped() ? kDone : kMoreWork; in Step() 135 if (!incremental_marking->IsStopped()) { in RunInternal() 140 if (!incremental_marking->IsStopped()) { in RunInternal()
|
D | memory-reducer.cc | 49 heap->incremental_marking()->IsStopped() && in RunInternal() 70 DCHECK(heap()->incremental_marking()->IsStopped()); in NotifyTimer() 78 if (!heap()->incremental_marking()->IsStopped() && in NotifyTimer()
|
D | incremental-marking.h | 69 inline bool IsStopped() { return state() == STOPPED; } in IsStopped() function
|
D | incremental-marking.cc | 948 if (IsStopped()) return; in Stop() 1014 DCHECK(!IsStopped()); in AdvanceIncrementalMarking() 1040 if (IsStopped() && ShouldActivateEvenWithoutIdleNotification()) { in OldSpaceStep()
|
D | heap.cc | 852 if (!incremental_marking()->IsStopped()) { in GCTypeTimer() 911 if (incremental_marking()->IsStopped()) { in ReportExternalMemoryPressure() 967 if (collector == SCAVENGER && !incremental_marking()->IsStopped()) { in CollectGarbage() 974 !ShouldAbortIncrementalMarking() && !incremental_marking()->IsStopped() && in CollectGarbage() 1046 if (!ShouldAbortIncrementalMarking() && incremental_marking()->IsStopped() && in CollectGarbage() 1078 DCHECK(incremental_marking()->IsStopped()); in StartIncrementalMarking() 1444 DCHECK(incremental_marking()->IsStopped()); in MarkCompactEpilogue() 4244 heap_state.incremental_marking_stopped = incremental_marking()->IsStopped(); in ComputeHeapState() 4402 if (FLAG_incremental_marking && incremental_marking()->IsStopped()) { in CheckMemoryPressure() 4438 if (FLAG_incremental_marking && incremental_marking()->IsStopped()) { in CollectGarbageOnMemoryPressure()
|
D | heap-inl.h | 392 if (!incremental_marking()->IsStopped()) return false; in OldGenerationAllocationLimitReached()
|
D | mark-compact.cc | 337 DCHECK(heap_->incremental_marking()->IsStopped()); in CollectGarbage()
|
/external/lldb/test/functionalities/thread/state/ |
D | TestThreadStates.py | 125 self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' during breakpoint 1.") 171 … self.assertFalse(thread.IsStopped(), "Thread state is \'stopped\' when it should be running.") 218 … self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' after expression evaluation.") 314 self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' during breakpoint 1.") 323 … self.assertFalse(thread.IsStopped(), "Thread state is \'stopped\' when it should be running.") 339 self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' after process stop.") 346 … self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' after expression evaluation.") 365 self.assertTrue(thread.IsStopped(), "Thread state isn't \'stopped\' during breakpoint 2.")
|
/external/lldb/test/functionalities/thread/multi_break/ |
D | TestMultipleBreakpoints.py | 74 self.assertTrue(thread1.IsStopped(), "Primary thread didn't stop during breakpoint") 75 self.assertTrue(thread2.IsStopped(), "Secondary thread didn't stop during breakpoint") 76 self.assertTrue(thread3.IsStopped(), "Tertiary thread didn't stop during breakpoint")
|
/external/v8/test/cctest/heap/ |
D | test-incremental-marking.cc | 136 CHECK(marking->IsStopped()); in TEST() 162 CHECK(marking->IsStopped()); in TEST() 188 while (!marking->IsStopped() && platform.PendingDelayedTask()) { in TEST() 192 CHECK(marking->IsStopped()); in TEST()
|
D | heap-utils.cc | 120 CHECK(marking->IsMarking() || marking->IsStopped()); in SimulateIncrementalMarking() 121 if (marking->IsStopped()) { in SimulateIncrementalMarking()
|
D | test-heap.cc | 2636 !marking->IsStopped()) { in TEST() 4625 if (marking->IsStopped()) { in TEST() 5374 if (marking->IsStopped()) { in TEST() 5686 if (marking->IsStopped()) { in TEST() 5695 !marking->IsStopped()) { in TEST() 6617 CHECK(marking->IsMarking() || marking->IsStopped()); in TEST() 6618 if (marking->IsStopped()) { in TEST() 6690 CHECK(marking->IsMarking() || marking->IsStopped()); in TEST() 6691 if (marking->IsStopped()) { in TEST() 6730 !heap->incremental_marking()->IsStopped())); in TEST()
|
/external/lldb/test/functionalities/thread/exit_during_step/ |
D | TestExitDuringStep.py | 118 self.assertTrue(thread1.IsStopped(), "Thread 1 didn't stop during breakpoint") 119 self.assertTrue(thread2.IsStopped(), "Thread 2 didn't stop during breakpoint") 120 self.assertTrue(thread3.IsStopped(), "Thread 3 didn't stop during breakpoint")
|
/external/lldb/scripts/Python/interface/ |
D | SBThread.i | 182 IsStopped(); 271 __swig_getmethods__["is_stopped"] = IsStopped 272 …if _newclass: is_stopped = property(IsStopped, None, doc='''A read only property that returns a bo…
|
/external/lldb/test/functionalities/thread/create_during_step/ |
D | TestCreateDuringStep.py | 117 self.assertTrue(thread1.IsStopped(), "Thread 1 didn't stop during breakpoint") 118 self.assertTrue(thread2.IsStopped(), "Thread 2 didn't stop during breakpoint")
|
/external/lldb/include/lldb/API/ |
D | SBThread.h | 157 IsStopped();
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.h | 197 bool IsStopped();
|
D | ProcessPOSIX.cpp | 305 if (IsStopped()) in DoHalt() 883 ProcessPOSIX::IsStopped() in IsStopped() function in ProcessPOSIX
|
/external/lldb/test/functionalities/thread/concurrent_events/ |
D | TestConcurrentEvents.py | 355 status = "stopped" if x.IsStopped() else "running"
|
/external/lldb/source/API/ |
D | SBThread.cpp | 996 SBThread::IsStopped() in IsStopped() function in SBThread
|
/external/lldb/www/python_reference/ |
D | api-objects.txt | 3803 lldb.SBThread.IsStopped lldb.SBThread-class.html#IsStopped
|
/external/v8/test/cctest/ |
D | test-api.cc | 17908 if (i < 10 && CcTest::heap()->incremental_marking()->IsStopped()) { in TEST()
|