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

  /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;
  /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...]
  /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)

Completed in 200 milliseconds