Lines Matching refs:outf
309 with open(self.out_filename, 'w') as outf, open(self.in_filename, 'r') as inf:
311 outsbf = lldb.SBFile(outf.fileno(), "w", False)
330 with open(self.out_filename, 'w') as outf, \
332 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
347 with open(self.out_filename, 'wb') as outf, \
349 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
363 outf = io.StringIO()
364 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
371 output = outf.getvalue()
378 outf = io.BytesIO()
379 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
386 output = outf.getvalue()
826 with open(self.out_filename, 'w') as outf:
827 outsbf = lldb.SBFile(outf.fileno(), "w", False)