chromium/third_party/crashpad/crashpad/snapshot/linux/debug_rendezvous.cc

// Copyright 2017 The Crashpad Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "snapshot/linux/debug_rendezvous.h"

#include <stdint.h>

#include <set>

#include "base/logging.h"
#include "build/build_config.h"

#if BUILDFLAG(IS_ANDROID)
#include <android/api-level.h>
#endif

namespace crashpad {

namespace {

struct Traits32 {};

struct Traits64 {};

template <typename Traits>
struct DebugRendezvousSpecific {};

template <typename Traits>
struct LinkEntrySpecific {};

template <typename Traits>
bool ReadLinkEntry(const ProcessMemoryRange& memory,
                   LinuxVMAddress* address,
                   DebugRendezvous::LinkEntry* entry_out) {}

}  // namespace

DebugRendezvous::LinkEntry::LinkEntry()
    :{}

DebugRendezvous::DebugRendezvous()
    :{}

DebugRendezvous::~DebugRendezvous() {}

bool DebugRendezvous::Initialize(const ProcessMemoryRange& memory,
                                 LinuxVMAddress address) {}

const DebugRendezvous::LinkEntry* DebugRendezvous::Executable() const {}

const std::vector<DebugRendezvous::LinkEntry>& DebugRendezvous::Modules()
    const {}

template <typename Traits>
bool DebugRendezvous::InitializeSpecific(const ProcessMemoryRange& memory,
                                         LinuxVMAddress address) {}

}  // namespace crashpad