Lines Matching defs:restarted

662   // have restarted the target. We have to actually check each event, and in
663 // the case of a stopped event check the restarted flag on the event.
771 // Make sure the program hasn't been auto-restarted:
783 stream->Printf("Process %" PRIu64 " stopped and restarted: %s\n",
788 " stopped and restarted, reasons:\n",
1310 void Process::SetPublicState(StateType new_state, bool restarted) {
1323 LLDB_LOGF(log, "(plugin = %s, state = %s, restarted = %i)",
1324 GetPluginName().data(), StateAsCString(new_state), restarted);
1340 if (new_state_is_stopped && !restarted) {
2698 const bool restarted = false;
2699 SetPublicState(eStateLaunching, restarted);
2976 const bool restarted = false;
2977 SetPublicState(eStateAttaching, restarted);
3049 const bool restarted = false;
3050 SetPublicState(eStateAttaching, restarted);
3704 // restarted... Asking the thread list is also not likely to go well,
4328 // If we're not stopped or have restarted, then skip the StopInfo actions:
5239 bool restarted = false;
5242 restarted = Process::ProcessEventData::GetRestartedFromEvent(
5247 "resume %d, got %s instead (restarted: %i, do_resume: %i, "
5249 num_resumes, StateAsCString(stop_state), restarted, do_resume,
5253 if (restarted) {
5255 // should ever get a stopped & restarted event here. But if I do,
5337 // If we were restarted, we just need to go back up to fetch
5416 // BUT it is also possible that we stopped & restarted (e.g. hit a
5418 // that case, we'll get the stopped & restarted event, and we should go
5459 "but got a restarted event, there must be "
5460 "an un-restarted stopped event so try "