Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBDebugger.i201 self.SetInputFile(SBFile.Create(file, borrow=True))
234 SetInputFile (SBFile file);
243 SetInputFile (FileSP file);
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBDebugger.h157 SBError SetInputFile(SBFile file);
163 SBError SetInputFile(FileSP file);
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBDebugger.cpp353 m_opaque_sp->SetInputFile( in SetInputFileHandle()
383 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() function in SBDebugger
395 m_opaque_sp->SetInputFile(file.m_opaque_sp); in SetInputFile()
399 SBError SBDebugger::SetInputFile(FileSP file_sp) { in SetInputFile() function in SBDebugger
401 return SetInputFile(SBFile(file_sp)); in SetInputFile()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DDebugger.h156 void SetInputFile(lldb::FileSP file);
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp939 SetInputFile((FileSP)std::make_shared<NativeFile>(commands_file, true)); in SetInputString()
943 void Debugger::SetInputFile(FileSP file_sp) { in SetInputFile() function in Debugger