Lines Matching refs:SBFile

335   return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp)));  in SetInputFile()
341 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile()
342 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (SBFile), file); in SetInputFile()
381 return LLDB_RECORD_RESULT(SetOutputFile(SBFile(file_sp))); in SetOutputFile()
390 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile()
391 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (SBFile file), file); in SetOutputFile()
413 return LLDB_RECORD_RESULT(SetErrorFile(SBFile(file_sp))); in SetErrorFile()
416 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile()
417 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (SBFile file), file); in SetErrorFile()
440 SBFile SBDebugger::GetInputFile() { in GetInputFile()
441 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetInputFile); in GetInputFile()
443 return LLDB_RECORD_RESULT(SBFile(m_opaque_sp->GetInputFileSP())); in GetInputFile()
445 return LLDB_RECORD_RESULT(SBFile()); in GetInputFile()
457 SBFile SBDebugger::GetOutputFile() { in GetOutputFile()
458 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetOutputFile); in GetOutputFile()
460 SBFile file(m_opaque_sp->GetOutputStream().GetFileSP()); in GetOutputFile()
463 return LLDB_RECORD_RESULT(SBFile()); in GetOutputFile()
476 SBFile SBDebugger::GetErrorFile() { in GetErrorFile()
477 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetErrorFile); in GetErrorFile()
478 SBFile file; in GetErrorFile()
480 SBFile file(m_opaque_sp->GetErrorStream().GetFileSP()); in GetErrorFile()
483 return LLDB_RECORD_RESULT(SBFile()); in GetErrorFile()
554 const SBEvent &event, SBFile out, in HandleProcessEvent()
555 SBFile err) { in HandleProcessEvent()
558 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile), process, in HandleProcessEvent()
1701 static SBError SetFileRedirect(SBDebugger *, SBFile file) { return SBError(); } in SetFileRedirect()
1715 SBFile)>::method<&SBDebugger::SetInputFile>::record, in RegisterMethods()
1718 SBFile)>::method<&SBDebugger::SetOutputFile>::record, in RegisterMethods()
1721 SBFile)>::method<&SBDebugger::SetErrorFile>::record, in RegisterMethods()
1767 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetInputFile, ()); in RegisterMethods()
1768 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetOutputFile, ()); in RegisterMethods()
1769 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetErrorFile, ()); in RegisterMethods()
1781 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile)); in RegisterMethods()