llvm/lldb/source/API/SBReproducer.cpp

//===-- SBReproducer.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/SBReproducer.h"
#include "lldb/API/LLDB.h"
#include "lldb/API/SBAddress.h"
#include "lldb/API/SBAttachInfo.h"
#include "lldb/API/SBBlock.h"
#include "lldb/API/SBBreakpoint.h"
#include "lldb/API/SBCommandInterpreter.h"
#include "lldb/API/SBCommandInterpreterRunOptions.h"
#include "lldb/API/SBData.h"
#include "lldb/API/SBDebugger.h"
#include "lldb/API/SBDeclaration.h"
#include "lldb/API/SBError.h"
#include "lldb/API/SBFileSpec.h"
#include "lldb/API/SBHostOS.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Utility/Instrumentation.h"
#include "lldb/Version/Version.h"

usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacelldb_private::repro;

SBReplayOptions::SBReplayOptions() {}

SBReplayOptions::SBReplayOptions(const SBReplayOptions &rhs) {}

SBReplayOptions::~SBReplayOptions() = default;

SBReplayOptions &SBReplayOptions::operator=(const SBReplayOptions &rhs) {}

void SBReplayOptions::SetVerify(bool verify) {}

bool SBReplayOptions::GetVerify() const {}

void SBReplayOptions::SetCheckVersion(bool check) {}

bool SBReplayOptions::GetCheckVersion() const {}

const char *SBReproducer::Capture() {}

const char *SBReproducer::Capture(const char *path) {}

const char *SBReproducer::PassiveReplay(const char *path) {}

const char *SBReproducer::Replay(const char *path) {}

const char *SBReproducer::Replay(const char *path, bool skip_version_check) {}

const char *SBReproducer::Replay(const char *path,
                                 const SBReplayOptions &options) {}

const char *SBReproducer::Finalize(const char *path) {}

bool SBReproducer::Generate() {}

bool SBReproducer::SetAutoGenerate(bool b) {}

const char *SBReproducer::GetPath() {}

void SBReproducer::SetWorkingDirectory(const char *path) {}