llvm/lldb/source/API/SBTraceCursor.cpp

//===-- SBTraceCursor.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/SBTraceCursor.h"
#include "Utils.h"
#include "lldb/Utility/Instrumentation.h"
#include "lldb/Target/TraceCursor.h"

usingnamespacelldb;
usingnamespacelldb_private;

SBTraceCursor::SBTraceCursor() {}

SBTraceCursor::SBTraceCursor(TraceCursorSP trace_cursor_sp)
    :{}

void SBTraceCursor::SetForwards(bool forwards) {}

bool SBTraceCursor::IsForwards() const {}

void SBTraceCursor::Next() {}

bool SBTraceCursor::HasValue() const {}

bool SBTraceCursor::GoToId(lldb::user_id_t id) {}

bool SBTraceCursor::HasId(lldb::user_id_t id) const {}

lldb::user_id_t SBTraceCursor::GetId() const {}

bool SBTraceCursor::Seek(int64_t offset, lldb::TraceCursorSeekType origin) {}

lldb::TraceItemKind SBTraceCursor::GetItemKind() const {}

bool SBTraceCursor::IsError() const {}

const char *SBTraceCursor::GetError() const {}

bool SBTraceCursor::IsEvent() const {}

lldb::TraceEvent SBTraceCursor::GetEventType() const {}

const char *SBTraceCursor::GetEventTypeAsString() const {}

bool SBTraceCursor::IsInstruction() const {}

lldb::addr_t SBTraceCursor::GetLoadAddress() const {}

lldb::cpu_id_t SBTraceCursor::GetCPU() const {}

bool SBTraceCursor::IsValid() const {}

operator bool()