HomeSort by relevance Sort by last modified time
    Searched refs:should_stop (Results 1 - 9 of 9) sorted by null

  /external/lldb/test/functionalities/conditional_break/
conditional_break.py 19 should_stop = True
23 should_stop = True
26 should_stop = False
29 return should_stop
  /external/lldb/include/lldb/Target/
UnixSignals.h 49 bool &should_stop,
StopInfo.h 146 // This creates a StopInfo for the thread where the should_stop is already set, and won't be recalculated.
148 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
  /external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp 475 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)
  /external/lldb/source/Target/
ThreadList.cpp 279 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;
Thread.cpp 679 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 = current_plan->ShouldStop(event_ptr)
    [all...]
UnixSignals.cpp 188 bool &should_stop,
199 should_stop = signal.m_stop;
StopInfo.cpp 125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) :
128 m_should_stop (should_stop),
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointLocation.cpp 437 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;

Completed in 990 milliseconds