Lines Matching refs:SBFile
299 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp))); in SetInputFile()
305 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile()
306 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (SBFile), file); in SetInputFile()
345 return LLDB_RECORD_RESULT(SetOutputFile(SBFile(file_sp))); in SetOutputFile()
354 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile()
355 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (SBFile file), file); in SetOutputFile()
377 return LLDB_RECORD_RESULT(SetErrorFile(SBFile(file_sp))); in SetErrorFile()
380 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile()
381 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (SBFile file), file); in SetErrorFile()
404 SBFile SBDebugger::GetInputFile() { in GetInputFile()
405 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetInputFile); in GetInputFile()
407 return LLDB_RECORD_RESULT(SBFile(m_opaque_sp->GetInputFileSP())); in GetInputFile()
409 return LLDB_RECORD_RESULT(SBFile()); in GetInputFile()
421 SBFile SBDebugger::GetOutputFile() { in GetOutputFile()
422 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetOutputFile); in GetOutputFile()
424 SBFile file(m_opaque_sp->GetOutputStream().GetFileSP()); in GetOutputFile()
427 return LLDB_RECORD_RESULT(SBFile()); in GetOutputFile()
440 SBFile SBDebugger::GetErrorFile() { in GetErrorFile()
441 LLDB_RECORD_METHOD_NO_ARGS(SBFile, SBDebugger, GetErrorFile); in GetErrorFile()
442 SBFile file; in GetErrorFile()
444 SBFile file(m_opaque_sp->GetErrorStream().GetFileSP()); in GetErrorFile()
447 return LLDB_RECORD_RESULT(SBFile()); in GetErrorFile()
518 const SBEvent &event, SBFile out, in HandleProcessEvent()
519 SBFile err) { in HandleProcessEvent()
522 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile), process, in HandleProcessEvent()
1658 static SBError SetFileRedirect(SBDebugger *, SBFile file) { return SBError(); } in SetFileRedirect()
1672 SBFile)>::method<&SBDebugger::SetInputFile>::record, in RegisterMethods()
1675 SBFile)>::method<&SBDebugger::SetOutputFile>::record, in RegisterMethods()
1678 SBFile)>::method<&SBDebugger::SetErrorFile>::record, in RegisterMethods()
1718 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetInputFile, ()); in RegisterMethods()
1719 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetOutputFile, ()); in RegisterMethods()
1720 LLDB_REGISTER_METHOD(SBFile, SBDebugger, GetErrorFile, ()); in RegisterMethods()
1732 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile)); in RegisterMethods()