Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i189 self.SetErrorFile(SBFile.Create(file, borrow=True))
216 SetErrorFile (SBFile file);
225 SetErrorFile (FileSP file);
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h95 SBError SetErrorFile(SBFile file);
101 SBError SetErrorFile(FileSP file);
/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestRunCommandInterpreterAPI.py65 self.dbg.SetErrorFile(devnull)
/external/llvm-project/lldb/source/API/
DSBDebugger.cpp372 SetErrorFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetErrorFileHandle()
375 SBError SBDebugger::SetErrorFile(FileSP file_sp) { in SetErrorFile() function in SBDebugger
376 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (FileSP), file_sp); in SetErrorFile()
377 return LLDB_RECORD_RESULT(SetErrorFile(SBFile(file_sp))); in SetErrorFile()
380 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() function in SBDebugger
381 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (SBFile file), file); in SetErrorFile()
391 m_opaque_sp->SetErrorFile(file.m_opaque_sp); in SetErrorFile()
1678 SBFile)>::method<&SBDebugger::SetErrorFile>::record, in RegisterMethods()
1688 FileSP)>::method<&SBDebugger::SetErrorFile>::record, in RegisterMethods()
/external/llvm-project/lldb/test/API/python_api/file_handle/
DTestFileHandle.py444 status = self.dbg.SetErrorFile(sbf)
574 status = self.dbg.SetErrorFile(f)
661 status = self.dbg.SetErrorFile(sbf)
673 status = self.dbg.SetErrorFile(f)
897 self.assertRaises(Exception, self.dbg.SetErrorFile, None)
898 self.assertRaises(Exception, self.dbg.SetErrorFile, "ham sandwich")
904 status = self.dbg.SetErrorFile(f)
/external/llvm-project/lldb/include/lldb/Core/
DDebugger.h139 void SetErrorFile(lldb::FileSP file);
/external/llvm-project/lldb/source/Core/
DDebugger.cpp805 void Debugger::SetErrorFile(FileSP file_sp) { in SetErrorFile() function in Debugger