Lines Matching refs:msg
131 msg = '+' + ' '.join(cmd) + '\n'
133 self.chained_file.write(msg)
134 self.logfile.write(self, msg)
365 def _note(self, note_type, msg, anchor=None): argument
383 self.f.write(self._escape(msg))
466 def error(self, msg): argument
476 self._note("error", msg)
478 def warning(self, msg): argument
489 self._note("warning", msg)
505 def info(self, msg): argument
515 self._note("info", msg)
517 def action(self, msg): argument
527 self._note("action", msg)
554 def status_pass(self, msg, anchor=None): argument
565 self._note("status-pass", msg, anchor)
567 def status_warning(self, msg, anchor=None): argument
578 self._note("status-warning", msg, anchor)
580 def status_skipped(self, msg, anchor=None): argument
591 self._note("status-skipped", msg, anchor)
593 def status_xfail(self, msg, anchor=None): argument
604 self._note("status-xfail", msg, anchor)
606 def status_xpass(self, msg, anchor=None): argument
617 self._note("status-xpass", msg, anchor)
619 def status_fail(self, msg, anchor=None): argument
630 self._note("status-fail", msg, anchor)