Home
last modified time | relevance | path

Searched refs:SetOutputFile (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py234 status = self.dbg.SetOutputFile(sbf)
247 status = self.dbg.SetOutputFile(sbf)
312 status = self.dbg.SetOutputFile(outsbf)
496 status = self.dbg.SetOutputFile(f)
552 status = self.dbg.SetOutputFile(sbf)
561 status = self.dbg.SetOutputFile(f)
662 status = self.dbg.SetOutputFile(f)
679 status = self.dbg.SetOutputFile(f)
687 status = self.dbg.SetOutputFile(f)
782 status = self.dbg.SetOutputFile(f)
[all …]
/llvm-project-15.0.7/lldb/test/API/lua_api/
H A DTestFileHandle.lua5 self.debugger:SetOutputFile(f)
18 self.debugger:SetOutputFile(f)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i194 self.SetOutputFile(SBFile.Create(file, borrow=True))
235 SetOutputFile (SBFile file);
244 SetOutputFile (FileSP file);
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/
H A Dio.test9 lldb.debugger:SetOutputFile(file)
H A Dprint.test9 lldb.debugger:SetOutputFile(file)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h142 SBError SetOutputFile(SBFile file);
148 SBError SetOutputFile(FileSP file);
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h59 void SetOutputFile(FILE *NewOutputFile);
H A DFuzzerIO.cpp30 void SetOutputFile(FILE *NewOutputFile) { in SetOutputFile() function
/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py59 self.dbg.SetOutputFile(devnull)
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp389 SBError SBDebugger::SetOutputFile(FileSP file_sp) { in SetOutputFile() function in SBDebugger
391 return SetOutputFile(SBFile(file_sp)); in SetOutputFile()
396 SetOutputFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetOutputFileHandle()
399 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() function in SBDebugger
410 m_opaque_sp->SetOutputFile(file.m_opaque_sp); in SetOutputFile()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h160 void SetOutputFile(lldb::FileSP file);
/llvm-project-15.0.7/lldb/bindings/lua/
H A Dlua-typemaps.swig231 // Typemap for file handles (e.g. used in SBDebugger::SetOutputFile)
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/tests/
H A DFuzzerUnittest.cpp599 SetOutputFile(open_memstream(&Buffer, &Size)); in PrintfCapture()
603 SetOutputFile(OldOutputFile); in ~PrintfCapture()
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp961 void Debugger::SetOutputFile(FileSP file_sp) { in SetOutputFile() function in Debugger