Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i182 self.SetInputFile(SBFile.Create(file, borrow=True))
210 SetInputFile (SBFile file);
219 SetInputFile (FileSP file);
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h91 SBError SetInputFile(SBFile file);
97 SBError SetInputFile(FileSP file);
/external/llvm-project/lldb/test/API/python_api/file_handle/
DTestFileHandle.py353 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/
DTestRunCommandInterpreterAPI.py60 self.dbg.SetInputFile(open(self.stdin_path, 'r'))
/external/llvm-project/lldb/source/API/
DSBDebugger.cpp294 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/
DDebugger.h135 void SetInputFile(lldb::FileSP file, repro::DataRecorder *recorder = nullptr);
/external/llvm-project/lldb/source/Core/
DDebugger.cpp791 void Debugger::SetInputFile(FileSP file_sp, repro::DataRecorder *recorder) { in SetInputFile() function in Debugger