llvm/lldb/source/Plugins/Process/Utility/AuxVector.cpp

//===-- AuxVector.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 "AuxVector.h"
#include <optional>

AuxVector::AuxVector(const lldb_private::DataExtractor &data) {}

void AuxVector::ParseAuxv(const lldb_private::DataExtractor &data) {}

std::optional<uint64_t>
AuxVector::GetAuxValue(enum EntryType entry_type) const {}

void AuxVector::DumpToLog(lldb_private::Log *log) const {}

const char *AuxVector::GetEntryName(EntryType type) const {}