Searched defs:should_stop (Results 1 - 6 of 6) sorted by relevance

/external/lldb/source/Target/
H A DUnixSignals.cpp188 bool &should_stop,
199 should_stop = signal.m_stop;
184 GetSignalInfo( int32_t signo, bool &should_suppress, bool &should_stop, bool &should_notify ) const argument
H A DThreadList.cpp279 bool should_stop = false; local
300 should_stop |= true;
307 if (!should_stop && !did_anybody_stop_for_a_reason)
309 should_stop = true;
311 log->Printf ("ThreadList::%s we stopped but no threads had a stop reason, overriding should_stop and stopping.", __FUNCTION__);
315 log->Printf ("ThreadList::%s overall should_stop = %i", __FUNCTION__, should_stop);
317 if (should_stop)
326 return should_stop;
H A DStopInfo.cpp125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : argument
128 m_should_stop (should_stop),
1092 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) argument
1094 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop));
H A DThread.cpp679 bool should_stop = true; local
686 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
696 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", should_stop = 0 (ignore since thread was suspended)",
710 log->Printf ("Thread::%s for tid = 0x%4.4" PRIx64 " 0x%4.4" PRIx64 ", pc = 0x%16.16" PRIx64 ", should_stop = 0 (ignore since no stop reason)",
766 should_stop = false;
777 should_stop = plan_ptr->ShouldStop (event_ptr);
789 if (should_stop)
821 should_stop = current_plan->ShouldStop (event_ptr);
823 log->Printf("Base plan says should stop: %i.", should_stop);
834 should_stop
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp437 bool should_stop = true; local
453 should_stop = InvokeCallback (context);
459 log->Printf ("Hit breakpoint location: %s, %s.\n", s.GetData(), should_stop ? "stopping" : "continuing");
462 return should_stop;
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp475 uint32_t should_stop = false; local
477 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)
479 should_stop = m_threads[idx]->ShouldStop(step_more);
481 return should_stop;
599 uint32_t should_stop = false; local
601 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)

Completed in 685 milliseconds