Searched refs:Platform (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h37 StringRef Platform; member in class:clang::AvailabilitySpec
42 AvailabilitySpec(VersionTuple Version, StringRef Platform, argument
44 : Version(Version), Platform(Platform), BeginLoc(BeginLoc),
52 StringRef getPlatform() const { return Platform; }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DTarget.h16 #include "llvm/TextAPI/MachO/Platform.h"
27 Target(Architecture Arch, PlatformKind Platform) argument
28 : Arch(Arch), Platform(Platform) {}
30 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformKind(Triple)) {}
37 PlatformKind Platform; member in class:llvm::MachO::Target
41 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
45 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
[all...]
H A DPlatform.h1 //===- llvm/TextAPI/MachO/Platform.h - Platform -----------------*- C++ -*-===//
37 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim);
40 StringRef getPlatformName(PlatformKind Platform);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandOptionValidators.h16 class Platform;
20 bool IsValid(Platform &platform,
H A DOptionGroupArchitecture.h32 bool GetArchitecture(Platform *platform, ArchSpec &arch);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTarget.cpp25 PlatformKind Platform; local
26 Platform = StringSwitch<PlatformKind>(PlatformStr)
38 if (Platform == PlatformKind::unknown) {
43 Platform = (PlatformKind)RawValue;
47 return Target{Architecture, Platform};
51 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + ")")
63 Result.insert(Target.Platform);
H A DPlatform.cpp1 //===- llvm/TextAPI/MachO/Platform.cpp - Platform ---------------*- C++ -*-===//
9 // Implementations of Platform Helper functions.
15 #include "llvm/TextAPI/MachO/Platform.h"
20 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim) { argument
21 switch (Platform) {
23 return Platform;
64 StringRef getPlatformName(PlatformKind Platform) { argument
65 switch (Platform) {
H A DTextStubCommon.cpp105 auto Platform = StringSwitch<PlatformKind>(Scalar) local
115 if (Platform == PlatformKind::macCatalyst)
119 if (Platform == PlatformKind::unknown)
122 Values.insert(Platform);
/freebsd-13-stable/sys/contrib/libsodium/builds/msvc/build/
H A Dbuildbase.bat16 ECHO Platform=x86
19 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %solution% >> %log%
22 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %solution% >> %log%
25 msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %solution% >> %log%
28 msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %solution% >> %log%
31 msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %solution% >> %log%
34 msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %solution% >> %log%
38 ECHO Platform=x64
41 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %solution% >> %log%
44 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandOptionValidators.cpp12 #include "lldb/Target/Platform.h"
18 Platform &platform, const ExecutionContext &target) const {
H A DOptionGroupArchitecture.cpp11 #include "lldb/Target/Platform.h"
30 bool OptionGroupArchitecture::GetArchitecture(Platform *platform,
32 arch = Platform::GetAugmentedArchSpec(platform, m_arch_str);
H A DOptionGroupPlatform.cpp13 #include "lldb/Target/Platform.h"
24 platform_sp = Platform::Create(ConstString(m_platform_name.c_str()), error);
36 platform_sp = Platform::Create(arch, &platform_arch, error);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1 //===-- Platform.cpp ------------------------------------------------------===//
31 #include "lldb/Target/Platform.h"
60 const char *Platform::GetHostPlatformName() { return "host"; }
135 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); }
147 void Platform::Initialize() { g_initialize_count++; }
149 void Platform::Terminate() {
158 const PlatformPropertiesSP &Platform::GetGlobalPlatformProperties() {
163 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) {
164 // The native platform should use its static void Platform::Initialize()
174 Status Platform
385 Platform::Platform(bool is_host) function in class:Platform
[all...]
H A DRemoteAwarePlatform.cpp190 return Platform::MakeDirectory(file_spec, file_permissions);
198 return Platform::GetFilePermissions(file_spec, file_permissions);
206 return Platform::SetFilePermissions(file_spec, file_permissions);
216 return Platform::OpenFile(file_spec, flags, mode, error);
224 return Platform::CloseFile(fd, error);
234 return Platform::ReadFile(fd, offset, dst, dst_len, error);
244 return Platform::WriteFile(fd, offset, src, src_len, error);
256 return Platform::GetFileSize(file_spec);
265 return Platform::CreateSymlink(src, dst);
273 return Platform
[all...]
H A DTargetList.cpp18 #include "lldb/Target/Platform.h"
177 PlatformSP host_platform_sp = Platform::GetHostPlatform();
206 Platform::GetPlatformForArchitecture(
214 Platform *platform_ptr = nullptr;
241 std::set<Platform *> platform_set;
267 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch);
277 platform_sp = Platform::GetPlatformForArchitecture(platform_arch,
309 PlatformSP host_platform_sp(Platform::GetHostPlatform());
333 platform_sp = Platform::GetPlatformForArchitecture(specified_arch, &arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp76 static ConstString g_host_name(Platform::GetHostPlatformName());
96 Platform::Initialize();
102 Platform::SetHostPlatform(default_platform_sp);
176 Platform::GetStatus(strm);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h25 class Platform;
104 virtual bool IsValid(Platform &platform,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp78 static ConstString g_host_name(Platform::GetHostPlatformName());
98 Platform::Initialize();
104 Platform::SetHostPlatform(default_platform_sp);
197 Platform::GetStatus(strm);
245 return Platform::GetSoftwareBreakpointTrapOpcode(target, bp_site);
252 error = Platform::LaunchProcess(launch_info);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h12 #include "lldb/Target/Platform.h"
18 class RemoteAwarePlatform : public Platform {
20 using Platform::Platform;
H A DPlatform.h1 //===-- Platform.h ----------------------------------------------*- C++ -*-===//
61 /// \class Platform Platform.h "lldb/Target/Platform.h"
72 class Platform : public PluginInterface { class in namespace:lldb_private
75 Platform(bool is_host_platform);
81 ~Platform() override;
117 static ArchSpec GetAugmentedArchSpec(Platform *platform,
122 /// Scans the installed Platform plug-ins and tries to find an instance that
148 /// Returns \b true if this Platform plu
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAssembler.h92 MachO::PlatformType Platform; ///< Used when EmitBuildVersion==true. member in union:llvm::MCAssembler::__anon3237
269 void setBuildVersion(MachO::PlatformType Platform, unsigned Major, argument
273 VersionInfo.TypeOrPlatform.Platform = Platform;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp70 static ConstString g_host_name(Platform::GetHostPlatformName());
96 Platform::SetHostPlatform(default_platform_sp);
171 Platform::GetStatus(strm);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp43 Platform::Initialize();
60 Platform::Terminate();
204 : Platform(false), // This is a remote platform
248 // Remote Platform subclasses need to override this function
263 return Platform::GetRemoteWorkingDirectory();
277 return Platform::SetRemoteWorkingDirectory(working_dir);
679 return Platform::PutFile(source, destination, uid, gid);
728 return Platform::GetRemoteUnixSignals();
843 return Platform::ConnectProcess(connect_url, plugin_name, debugger, target,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp66 static uint32_t chown_file(Platform *platform, const char *path,
150 return Platform::PutFile(source, destination, uid, gid);
262 return Platform::GetFile(source, destination);
297 return Platform::GetRemoteUnixSignals();
309 Platform::Create(ConstString("remote-gdb-server"), error);
429 process_sp = Platform::DebugProcess(launch_info, debugger, target, error);
632 // lifespan of the Targets that use them, we can't put this in the Platform.
790 // Platform lives longer than the process and the Platforms don't get a
916 return Platform::ConnectToWaitingProcesses(debugger, error);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCMachOStreamer.cpp93 void emitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor,
279 void MCMachOStreamer::emitBuildVersion(unsigned Platform, unsigned Major, argument
282 getAssembler().setBuildVersion((MachO::PlatformType)Platform, Major, Minor,

Completed in 196 milliseconds

123