Home
last modified time | relevance | path

Searched refs:SetErrorFile (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i208 self.SetErrorFile(SBFile.Create(file, borrow=True))
238 SetErrorFile (SBFile file);
247 SetErrorFile (FileSP file);
/llvm-project-15.0.7/lldb/test/API/lua_api/
H A DTestFileHandle.lua29 self.debugger:SetErrorFile(f)
/llvm-project-15.0.7/lldb/test/API/lang/objc/modules-hash-mismatch/
H A DTestClangModulesHashMismatch.py35 status = self.dbg.SetErrorFile(sbf)
/llvm-project-15.0.7/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py395 status = self.dbg.SetErrorFile(sbf)
504 status = self.dbg.SetErrorFile(f)
571 status = self.dbg.SetErrorFile(sbf)
581 status = self.dbg.SetErrorFile(f)
777 self.assertRaises(Exception, self.dbg.SetErrorFile, None)
778 self.assertRaises(Exception, self.dbg.SetErrorFile, "ham sandwich")
784 status = self.dbg.SetErrorFile(f)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h144 SBError SetErrorFile(SBFile file);
150 SBError SetErrorFile(FileSP file);
/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py60 self.dbg.SetErrorFile(devnull)
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp416 SetErrorFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetErrorFileHandle()
419 SBError SBDebugger::SetErrorFile(FileSP file_sp) { in SetErrorFile() function in SBDebugger
421 return SetErrorFile(SBFile(file_sp)); in SetErrorFile()
424 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() function in SBDebugger
435 m_opaque_sp->SetErrorFile(file.m_opaque_sp); in SetErrorFile()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h162 void SetErrorFile(lldb::FileSP file);
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp966 void Debugger::SetErrorFile(FileSP file_sp) { in SetErrorFile() function in Debugger