Lines Matching refs:SBFile

172         sbf = lldb.SBFile()
182 sbf = lldb.SBFile(f.fileno(), "w", False)
195 sbf = lldb.SBFile(f)
209 sbf = lldb.SBFile(f.fileno(), "r", False)
221 sbf = lldb.SBFile(f)
233 sbf = lldb.SBFile(f.fileno(), "w", False)
246 sbf = lldb.SBFile(f.fileno(), "w", False)
256 status = self.dbg.SetOutputFile(lldb.SBFile(f))
295 ret.SetImmediateOutputFile(lldb.SBFile(f))
311 outsbf = lldb.SBFile(outf.fileno(), "w", False)
315 insbf = lldb.SBFile(inf.fileno(), "r", False)
332 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
334 status = self.dbg.SetInputFile(lldb.SBFile(inf))
349 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
351 status = self.dbg.SetInputFile(lldb.SBFile(inf))
364 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
366 status = self.dbg.SetInputFile(lldb.SBFile(inf))
379 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
381 status = self.dbg.SetInputFile(lldb.SBFile(inf))
394 sbf = lldb.SBFile(f.fileno(), 'w', False)
433 sbf = lldb.SBFile.Create(f, borrow=True)
453 sbf = lldb.SBFile.Create(f, force_io_methods=True)
472 sbf = lldb.SBFile.Create(f, borrow=True, force_io_methods=True)
485 sbf = lldb.SBFile(f)
513 sbf = lldb.SBFile(f)
523 sbf = lldb.SBFile(f)
532 sbf = lldb.SBFile(f)
542 sbf = lldb.SBFile(f)
551 sbf = lldb.SBFile(f)
570 sbf = lldb.SBFile(f)
590 self.assertRaises(Exception, lldb.SBFile, None)
591 self.assertRaises(Exception, lldb.SBFile, "ham sandwich")
592 self.assertRaises(OhNoe, lldb.SBFile, ReallyBadIO())
593 error, n = lldb.SBFile(BadIO()).Write(b"FOO")
597 error, n = lldb.SBFile(BadIO()).Read(bytearray(100))
607 self.dbg.SetOutputFile(lldb.SBFile(BadIO()))
618 sbf = lldb.SBFile(f)
631 sbf = lldb.SBFile.Create(f, borrow=True)
643 sbf = lldb.SBFile(f)
652 sbf = lldb.SBFile.Create(f, borrow=True)
701 sbf = lldb.SBFile(f)
707 sbf = lldb.SBFile.Create(f, borrow=True)
713 sbf = lldb.SBFile(f)
719 sbf = lldb.SBFile.Create(f, borrow=True)
730 sbf = lldb.SBFile.Create(f, borrow=True, force_io_methods=True)
741 sbf = lldb.SBFile.Create(f, force_io_methods=True)
756 sbf = lldb.SBFile.Create(f, borrow=True)
762 sbf = lldb.SBFile.Create(f, borrow=True)
818 stream.RedirectToFile(lldb.SBFile.Create(f, borrow=False))
827 outsbf = lldb.SBFile(outf.fileno(), "w", False)