Searched refs:SetInputFile (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/bindings/interface/ |
D | SBDebugger.i | 182 self.SetInputFile(SBFile.Create(file, borrow=True)) 210 SetInputFile (SBFile file); 219 SetInputFile (FileSP file);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBDebugger.h | 91 SBError SetInputFile(SBFile file); 97 SBError SetInputFile(FileSP file);
|
/external/llvm-project/lldb/test/API/python_api/file_handle/ |
D | TestFileHandle.py | 353 status = self.dbg.SetInputFile(insbf) 373 status = self.dbg.SetInputFile(lldb.SBFile(inf)) 392 status = self.dbg.SetInputFile(lldb.SBFile(inf)) 410 status = self.dbg.SetInputFile(lldb.SBFile(inf)) 428 status = self.dbg.SetInputFile(lldb.SBFile(inf)) 894 self.assertRaises(Exception, self.dbg.SetInputFile, None) 895 self.assertRaises(Exception, self.dbg.SetInputFile, "ham sandwich") 919 status = self.dbg.SetInputFile(f)
|
/external/llvm-project/lldb/test/API/python_api/interpreter/ |
D | TestRunCommandInterpreterAPI.py | 60 self.dbg.SetInputFile(open(self.stdin_path, 'r'))
|
/external/llvm-project/lldb/source/API/ |
D | SBDebugger.cpp | 294 SetInputFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetInputFileHandle() 297 SBError SBDebugger::SetInputFile(FileSP file_sp) { in SetInputFile() function in SBDebugger 298 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (FileSP), file_sp); in SetInputFile() 299 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp))); in SetInputFile() 305 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() function in SBDebugger 306 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (SBFile), file); in SetInputFile() 339 m_opaque_sp->SetInputFile(file_sp, recorder); in SetInputFile() 1672 SBFile)>::method<&SBDebugger::SetInputFile>::record, in RegisterMethods() 1682 FileSP)>::method<&SBDebugger::SetInputFile>::record, in RegisterMethods()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Debugger.h | 135 void SetInputFile(lldb::FileSP file, repro::DataRecorder *recorder = nullptr);
|
/external/llvm-project/lldb/source/Core/ |
D | Debugger.cpp | 791 void Debugger::SetInputFile(FileSP file_sp, repro::DataRecorder *recorder) { in SetInputFile() function in Debugger
|