Lines Matching refs:bugreport
123 def SendNotificationEmail(subject, body, bugreport=None): argument
146 if FLAGS.attach_bugreport and bugreport:
148 ctype, _ = mimetypes.guess_type(bugreport)
150 with open(bugreport, "rb") as fp:
154 att.add_header("Content-Disposition", "attachment", filename=bugreport)
583 bugreport = None
586 bugreport = self.TakeBugReport()
592 "\n".join(["Current Summary:"] + self.GetSummaryLines()), bugreport)
670 bugreport = os.path.join(self.output_root,
676 with open(bugreport, "w") as bugreport_fp:
677 bugreport_fp.write(self.Command(["bugreport", bugreport]))
684 self.Command(["zip", bugreport, bugreport_txt])
691 return bugreport