Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
lldb/include/lldb/Core/Debugger.h
Show First 20 Lines • Show All 126 Lines • ▼ Show 20 Lines | public: | ||||
File &GetErrorFile() { return m_error_stream_sp->GetFile(); } | File &GetErrorFile() { return m_error_stream_sp->GetFile(); } | ||||
StreamFile &GetOutputStream() { return *m_output_stream_sp; } | StreamFile &GetOutputStream() { return *m_output_stream_sp; } | ||||
StreamFile &GetErrorStream() { return *m_error_stream_sp; } | StreamFile &GetErrorStream() { return *m_error_stream_sp; } | ||||
repro::DataRecorder *GetInputRecorder(); | repro::DataRecorder *GetInputRecorder(); | ||||
void SetInputFileHandle(FILE *fh, bool tranfer_ownership, | Status SetInputFile(lldb::FileSP file, | ||||
repro::DataRecorder *recorder = nullptr); | repro::DataRecorder *recorder = nullptr); | ||||
void SetOutputFileHandle(FILE *fh, bool tranfer_ownership); | Status SetOutputFile(lldb::FileSP file); | ||||
void SetErrorFileHandle(FILE *fh, bool tranfer_ownership); | Status SetErrorFile(lldb::FileSP file); | ||||
void SaveInputTerminalState(); | void SaveInputTerminalState(); | ||||
void RestoreInputTerminalState(); | void RestoreInputTerminalState(); | ||||
lldb::StreamSP GetAsyncOutputStream(); | lldb::StreamSP GetAsyncOutputStream(); | ||||
lldb::StreamSP GetAsyncErrorStream(); | lldb::StreamSP GetAsyncErrorStream(); | ||||
▲ Show 20 Lines • Show All 284 Lines • Show Last 20 Lines |