Home
last modified time | relevance | path

Searched refs:SetInputFile (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i201 self.SetInputFile(SBFile.Create(file, borrow=True))
232 SetInputFile (SBFile file);
241 SetInputFile (FileSP file);
/llvm-project-15.0.7/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py316 status = self.dbg.SetInputFile(insbf)
334 status = self.dbg.SetInputFile(lldb.SBFile(inf))
351 status = self.dbg.SetInputFile(lldb.SBFile(inf))
366 status = self.dbg.SetInputFile(lldb.SBFile(inf))
381 status = self.dbg.SetInputFile(lldb.SBFile(inf))
774 self.assertRaises(Exception, self.dbg.SetInputFile, None)
775 self.assertRaises(Exception, self.dbg.SetInputFile, "ham sandwich")
793 status = self.dbg.SetInputFile(f)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h140 SBError SetInputFile(SBFile file);
146 SBError SetInputFile(FileSP file);
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h156 Status SetInputFile(lldb::FileSP file);
158 void SetInputFile(lldb::FileSP file, repro::DataRecorder *recorder);
/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py55 self.dbg.SetInputFile(open(self.stdin_path, 'r'))
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp342 m_opaque_sp->SetInputFile( in SetInputFileHandle()
372 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() function in SBDebugger
380 error.SetError(m_opaque_sp->SetInputFile(file.m_opaque_sp)); in SetInputFile()
384 SBError SBDebugger::SetInputFile(FileSP file_sp) { in SetInputFile() function in SBDebugger
386 return SetInputFile(SBFile(file_sp)); in SetInputFile()
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp919 return SetInputFile( in SetInputString()
923 Status Debugger::SetInputFile(FileSP file_sp) { in SetInputFile() function in Debugger
948 SetInputFile(file_sp, recorder); in SetInputFile()
952 void Debugger::SetInputFile(FileSP file_sp, repro::DataRecorder *recorder) { in SetInputFile() function in Debugger