Home
last modified time | relevance | path

Searched refs:IsStopped (Results 1 – 24 of 24) sorted by relevance

/external/lldb/test/functionalities/thread/break_after_join/
DTestBreakAfterJoin.py80 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/
DTestExitDuringBreak.py79 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/
Dincremental-marking-job.cc21 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()
Dmemory-reducer.cc49 heap->incremental_marking()->IsStopped() && in RunInternal()
70 DCHECK(heap()->incremental_marking()->IsStopped()); in NotifyTimer()
78 if (!heap()->incremental_marking()->IsStopped() && in NotifyTimer()
Dincremental-marking.h69 inline bool IsStopped() { return state() == STOPPED; } in IsStopped() function
Dincremental-marking.cc948 if (IsStopped()) return; in Stop()
1014 DCHECK(!IsStopped()); in AdvanceIncrementalMarking()
1040 if (IsStopped() && ShouldActivateEvenWithoutIdleNotification()) { in OldSpaceStep()
Dheap.cc852 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()
Dheap-inl.h392 if (!incremental_marking()->IsStopped()) return false; in OldGenerationAllocationLimitReached()
Dmark-compact.cc337 DCHECK(heap_->incremental_marking()->IsStopped()); in CollectGarbage()
/external/lldb/test/functionalities/thread/state/
DTestThreadStates.py125 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/
DTestMultipleBreakpoints.py74 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/
Dtest-incremental-marking.cc136 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()
Dheap-utils.cc120 CHECK(marking->IsMarking() || marking->IsStopped()); in SimulateIncrementalMarking()
121 if (marking->IsStopped()) { in SimulateIncrementalMarking()
Dtest-heap.cc2636 !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/
DTestExitDuringStep.py118 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/
DSBThread.i182 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/
DTestCreateDuringStep.py117 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/
DSBThread.h157 IsStopped();
/external/lldb/source/Plugins/Process/POSIX/
DProcessPOSIX.h197 bool IsStopped();
DProcessPOSIX.cpp305 if (IsStopped()) in DoHalt()
883 ProcessPOSIX::IsStopped() in IsStopped() function in ProcessPOSIX
/external/lldb/test/functionalities/thread/concurrent_events/
DTestConcurrentEvents.py355 status = "stopped" if x.IsStopped() else "running"
/external/lldb/source/API/
DSBThread.cpp996 SBThread::IsStopped() in IsStopped() function in SBThread
/external/lldb/www/python_reference/
Dapi-objects.txt3803 lldb.SBThread.IsStopped lldb.SBThread-class.html#IsStopped
/external/v8/test/cctest/
Dtest-api.cc17908 if (i < 10 && CcTest::heap()->incremental_marking()->IsStopped()) { in TEST()