Lines Matching defs:restarted

687   // have restarted the target. We have to actually check each event, and in
688 // the case of a stopped event check the restarted flag on the event.
796 // Make sure the program hasn't been auto-restarted:
808 stream->Printf("Process %" PRIu64 " stopped and restarted: %s\n",
813 " stopped and restarted, reasons:\n",
1339 void Process::SetPublicState(StateType new_state, bool restarted) {
1352 LLDB_LOGF(log, "(plugin = %s, state = %s, restarted = %i)",
1353 GetPluginName().data(), StateAsCString(new_state), restarted);
1369 if (new_state_is_stopped && !restarted) {
2717 const bool restarted = false;
2718 SetPublicState(eStateLaunching, restarted);
2994 const bool restarted = false;
2995 SetPublicState(eStateAttaching, restarted);
3066 const bool restarted = false;
3067 SetPublicState(eStateAttaching, restarted);
3687 // restarted... Asking the thread list is also not likely to go well,
4302 // If we're not stopped or have restarted, then skip the StopInfo actions:
5213 bool restarted = false;
5216 restarted = Process::ProcessEventData::GetRestartedFromEvent(
5221 "resume %d, got %s instead (restarted: %i, do_resume: %i, "
5223 num_resumes, StateAsCString(stop_state), restarted, do_resume,
5227 if (restarted) {
5229 // should ever get a stopped & restarted event here. But if I do,
5311 // If we were restarted, we just need to go back up to fetch
5390 // BUT it is also possible that we stopped & restarted (e.g. hit a
5392 // that case, we'll get the stopped & restarted event, and we should go
5433 "but got a restarted event, there must be "
5434 "an un-restarted stopped event so try "