Lines Matching refs:strm
187 StreamString strm; in GetDescription() local
203 strm.Printf("breakpoint "); in GetDescription()
204 bp_site_sp->GetDescription(&strm, eDescriptionLevelBrief); in GetDescription()
205 m_description = std::string(strm.GetString()); in GetDescription()
207 StreamString strm; in GetDescription() local
216 strm.Printf("internal %s breakpoint(%d).", kind, m_break_id); in GetDescription()
218 strm.Printf("internal breakpoint(%d).", m_break_id); in GetDescription()
220 strm.Printf("breakpoint %d.", m_break_id); in GetDescription()
224 strm.Printf("one-shot breakpoint %d", m_break_id); in GetDescription()
226 strm.Printf("breakpoint %d which has been deleted.", in GetDescription()
230 strm.Printf("breakpoint site %" PRIi64 in GetDescription()
234 strm.Printf("breakpoint site %" PRIi64 in GetDescription()
238 m_description = std::string(strm.GetString()); in GetDescription()
466 StreamString strm; in PerformAction() local
467 strm << "stopped due to an error evaluating condition of " in PerformAction()
469 bp_loc_sp->GetDescription(&strm, eDescriptionLevelBrief); in PerformAction()
470 strm << ": \"" << bp_loc_sp->GetConditionText() << "\"\n"; in PerformAction()
471 strm << err_str; in PerformAction()
474 strm.GetString().str(), in PerformAction()
685 StreamString strm; in GetDescription() local
686 strm.Printf("watchpoint %" PRIi64, m_value); in GetDescription()
687 m_description = std::string(strm.GetString()); in GetDescription()
883 StreamString strm; in PerformAction() local
884 strm << "stopped due to an error evaluating condition of " in PerformAction()
886 wp_sp->GetDescription(&strm, eDescriptionLevelBrief); in PerformAction()
887 strm << ": \"" << wp_sp->GetConditionText() << "\"\n"; in PerformAction()
888 strm << err_str; in PerformAction()
890 Debugger::ReportError(strm.GetString().str(), in PerformAction()
988 StreamString strm; in DoShouldNotify() local
989 strm.Printf( in DoShouldNotify()
994 strm.GetData()); in DoShouldNotify()
1014 StreamString strm; in GetDescription() local
1019 strm.Printf("signal %s", signal_name); in GetDescription()
1021 strm.Printf("signal %" PRIi64, m_value); in GetDescription()
1022 m_description = std::string(strm.GetString()); in GetDescription()
1109 StreamString strm; in GetDescription() local
1110 m_plan_sp->GetDescription(&strm, eDescriptionLevelBrief); in GetDescription()
1111 m_description = std::string(strm.GetString()); in GetDescription()