LLDB mainline
HostInfoAndroid.h
Go to the documentation of this file.
1//===-- HostInfoAndroid.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_Host_android_HostInfoAndroid_h_
10#define lldb_Host_android_HostInfoAndroid_h_
11
13
14namespace lldb_private {
15
17 friend class HostInfoBase;
18
19public:
21 static FileSpec ResolveLibraryPath(const std::string &path,
22 const ArchSpec &arch);
23
24protected:
25 static void ComputeHostArchitectureSupport(ArchSpec &arch_32,
26 ArchSpec &arch_64);
27 static bool ComputeTempFileBaseDirectory(FileSpec &file_spec);
28};
29
30} // end of namespace lldb_private
31
32#endif // #ifndef lldb_Host_android_HostInfoAndroid_h_
An architecture specification class.
Definition: ArchSpec.h:31
A file utility class.
Definition: FileSpec.h:56
static bool ComputeTempFileBaseDirectory(FileSpec &file_spec)
static FileSpec ResolveLibraryPath(const std::string &path, const ArchSpec &arch)
static void ComputeHostArchitectureSupport(ArchSpec &arch_32, ArchSpec &arch_64)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14