LLDB mainline
PlatformRemoteAppleXR.h
Go to the documentation of this file.
1//===-- PlatformRemoteAppleXR.h ---------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
10#define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
11
13
14namespace lldb_private {
16public:
18
19 static lldb::PlatformSP CreateInstance(bool force,
20 const lldb_private::ArchSpec *arch);
21
22 static void Initialize();
23
24 static void Terminate();
25
26 static llvm::StringRef GetPluginNameStatic();
27
28 static llvm::StringRef GetDescriptionStatic();
29
30 llvm::StringRef GetDescription() override { return GetDescriptionStatic(); }
31
32 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
33
34 std::vector<lldb_private::ArchSpec> GetSupportedArchitectures(
35 const lldb_private::ArchSpec &process_host_arch) override;
36
37protected:
38 llvm::StringRef GetDeviceSupportDirectoryName() override;
39 llvm::StringRef GetPlatformName() override;
40};
41} // namespace lldb_private
42
43#endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
An architecture specification class.
Definition: ArchSpec.h:31
llvm::StringRef GetPluginName() override
std::vector< lldb_private::ArchSpec > GetSupportedArchitectures(const lldb_private::ArchSpec &process_host_arch) override
Get the platform's supported architectures in the order in which they should be searched.
llvm::StringRef GetPlatformName() override
llvm::StringRef GetDescription() override
llvm::StringRef GetDeviceSupportDirectoryName() override
static lldb::PlatformSP CreateInstance(bool force, const lldb_private::ArchSpec *arch)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::Platform > PlatformSP
Definition: lldb-forward.h:380