Searched refs:should_stop (Results 1 – 9 of 9) sorted by relevance
/external/lldb/test/functionalities/conditional_break/ |
D | conditional_break.py | 19 should_stop = True 23 should_stop = True 26 should_stop = False 29 return should_stop
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachThreadList.cpp | 475 uint32_t should_stop = false; in ShouldStop() local 477 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) in ShouldStop() 479 should_stop = m_threads[idx]->ShouldStop(step_more); in ShouldStop() 481 return should_stop; in ShouldStop() 599 uint32_t should_stop = false; in GetThreadIndexForThreadStoppedWithSignal() local 601 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) in GetThreadIndexForThreadStoppedWithSignal()
|
/external/lldb/source/Target/ |
D | ThreadList.cpp | 279 bool should_stop = false; in ShouldStop() local 300 should_stop |= true; in ShouldStop() 307 if (!should_stop && !did_anybody_stop_for_a_reason) in ShouldStop() 309 should_stop = true; in ShouldStop() 315 log->Printf ("ThreadList::%s overall should_stop = %i", __FUNCTION__, should_stop); in ShouldStop() 317 if (should_stop) in ShouldStop() 326 return should_stop; in ShouldStop()
|
D | Thread.cpp | 679 bool should_stop = true; in ShouldStop() local 766 should_stop = false; in ShouldStop() 777 should_stop = plan_ptr->ShouldStop (event_ptr); in ShouldStop() 789 if (should_stop) in ShouldStop() 821 should_stop = current_plan->ShouldStop (event_ptr); in ShouldStop() 823 log->Printf("Base plan says should stop: %i.", should_stop); in ShouldStop() 834 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop() 836 log->Printf("Plan %s should stop: %d.", current_plan->GetName(), should_stop); in ShouldStop() 839 if (should_stop) in ShouldStop() 845 … if (should_stop && current_plan->IsMasterPlan() && !current_plan->OkayToDiscard()) in ShouldStop() [all …]
|
D | UnixSignals.cpp | 188 bool &should_stop, in GetSignalInfo() argument 199 should_stop = signal.m_stop; in GetSignalInfo()
|
D | StopInfo.cpp | 125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : in StopInfoBreakpoint() argument 128 m_should_stop (should_stop), in StopInfoBreakpoint() 1092 …pInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) in CreateStopReasonWithBreakpointSiteID() argument 1094 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
/external/lldb/source/Breakpoint/ |
D | BreakpointLocation.cpp | 437 bool should_stop = true; in ShouldStop() local 453 should_stop = InvokeCallback (context); in ShouldStop() 459 …log->Printf ("Hit breakpoint location: %s, %s.\n", s.GetData(), should_stop ? "stopping" : "contin… in ShouldStop() 462 return should_stop; in ShouldStop()
|
/external/lldb/include/lldb/Target/ |
D | UnixSignals.h | 49 bool &should_stop,
|
D | StopInfo.h | 148 …CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
|