llvm/lldb/source/API/SBStream.cpp

//===-- SBStream.cpp ------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/API/SBStream.h"

#include "lldb/API/SBFile.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/StreamFile.h"
#include "lldb/Utility/Instrumentation.h"
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/Stream.h"
#include "lldb/Utility/StreamString.h"

usingnamespacelldb;
usingnamespacelldb_private;

SBStream::SBStream() :{}

SBStream::SBStream(SBStream &&rhs)
    :{}

SBStream::~SBStream() = default;

bool SBStream::IsValid() const {}
operator bool()

// If this stream is not redirected to a file, it will maintain a local cache
// for the stream data which can be accessed using this accessor.
const char *SBStream::GetData() {}

// If this stream is not redirected to a file, it will maintain a local cache
// for the stream output whose length can be accessed using this accessor.
size_t SBStream::GetSize() {}

void SBStream::Print(const char *str) {}

void SBStream::Printf(const char *format, ...) {}

void SBStream::RedirectToFile(const char *path, bool append) {}

void SBStream::RedirectToFileHandle(FILE *fh, bool transfer_fh_ownership) {}

void SBStream::RedirectToFile(SBFile file) {}

void SBStream::RedirectToFile(FileSP file_sp) {}

void SBStream::RedirectToFileDescriptor(int fd, bool transfer_fh_ownership) {}

lldb_private::Stream *SBStream::operator->() {}

lldb_private::Stream *SBStream::get() {}

lldb_private::Stream &SBStream::ref() {}

void SBStream::Clear() {}