| /openbsd-src/gnu/llvm/llvm/include/llvm/TextAPI/ |
| H A D | Target.h | 29 Target(Architecture Arch, PlatformType Platform) in Target() argument 30 : Arch(Arch), Platform(Platform) {} in Target() 32 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformType(Triple)) {} in Target() 39 PlatformType Platform; variable 43 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform); 47 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform); 51 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
|
| H A D | Platform.h | 23 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim); 26 StringRef getPlatformName(PlatformType Platform); 28 std::string getOSAndEnvironmentName(PlatformType Platform,
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Platform.cpp | 62 const char *Platform::GetHostPlatformName() { return "host"; } in GetHostPlatformName() 137 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform() 139 void Platform::Initialize() {} in Initialize() 141 void Platform::Terminate() {} in Terminate() 143 PlatformProperties &Platform::GetGlobalPlatformProperties() { in GetGlobalPlatformProperties() 148 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform() 154 Status Platform::GetFileWithUUID(const FileSpec &platform_file, in GetFileWithUUID() 162 Platform::LocateExecutableScriptingResources(Target *target, Module &module, in LocateExecutableScriptingResources() 201 Status Platform::GetSharedModule( in GetSharedModule() 242 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() [all …]
|
| H A D | RemoteAwarePlatform.cpp | 187 return Platform::RunShellCommand(shell, command, working_dir, status_ptr, in RunShellCommand() 195 return Platform::MakeDirectory(file_spec, file_permissions); in MakeDirectory() 203 return Platform::GetFilePermissions(file_spec, file_permissions); in GetFilePermissions() 211 return Platform::SetFilePermissions(file_spec, file_permissions); in SetFilePermissions() 219 return Platform::OpenFile(file_spec, flags, mode, error); in OpenFile() 225 return Platform::CloseFile(fd, error); in CloseFile() 233 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 241 return Platform::WriteFile(fd, offset, src, src_len, error); in WriteFile() 247 return Platform::GetFileSize(file_spec); in GetFileSize() 254 return Platform::CreateSymlink(src, dst); in CreateSymlink() [all …]
|
| /openbsd-src/gnu/usr.bin/clang/liblldbPluginPlatform/ |
| H A D | Makefile | 30 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Android 31 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/FreeBSD 32 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Linux 33 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/MacOSX 34 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/NetBSD 35 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/OpenBSD 36 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/POSIX 37 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Windows 38 .PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/gdb-server
|
| /openbsd-src/gnu/llvm/llvm/lib/TextAPI/ |
| H A D | Target.cpp | 22 PlatformType Platform; in create() local 23 Platform = StringSwitch<PlatformType>(PlatformStr) in create() 36 if (Platform == PLATFORM_UNKNOWN) { in create() 41 Platform = (PlatformType)RawValue; in create() 45 return Target{Architecture, Platform}; in create() 49 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + ")") in operator std::string() 61 Result.insert(Target.Platform); in mapToPlatformSet() 74 getOSAndEnvironmentName(Targ.Platform)) in getTargetTripleName()
|
| H A D | Platform.cpp | 21 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim) { in mapToPlatformType() argument 22 switch (Platform) { in mapToPlatformType() 24 return Platform; in mapToPlatformType() 63 StringRef getPlatformName(PlatformType Platform) { in getPlatformName() argument 64 switch (Platform) { in getPlatformName() 106 std::string getOSAndEnvironmentName(PlatformType Platform, in getOSAndEnvironmentName() argument 108 switch (Platform) { in getOSAndEnvironmentName()
|
| H A D | TextStubCommon.cpp | 108 auto Platform = StringSwitch<PlatformType>(Scalar) in input() local 118 if (Platform == PLATFORM_MACCATALYST) in input() 122 if (Platform == PLATFORM_UNKNOWN) in input() 125 Values.insert(Platform); in input()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Availability.h | 37 StringRef Platform; variable 42 AvailabilitySpec(VersionTuple Version, StringRef Platform, in AvailabilitySpec() argument 44 : Version(Version), Platform(Platform), BeginLoc(BeginLoc), in AvailabilitySpec() 52 StringRef getPlatform() const { return Platform; } in getPlatform()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 47 Platform::Initialize(); in Initialize() 64 Platform::Terminate(); in Terminate() 98 Log *log = GetLog(LLDBLog::Platform); in GetModuleSpec() 134 : Platform(/*is_host=*/false) {} in PlatformRemoteGDBServer() 177 Log *log = GetLog(LLDBLog::Platform); in GetRemoteWorkingDirectory() 185 return Platform::GetRemoteWorkingDirectory(); in GetRemoteWorkingDirectory() 194 Log *log = GetLog(LLDBLog::Platform); in SetRemoteWorkingDirectory() 199 return Platform::SetRemoteWorkingDirectory(working_dir); in SetRemoteWorkingDirectory() 319 Log *log = GetLog(LLDBLog::Platform); in LaunchProcess() 539 Log *log = GetLog(LLDBLog::Platform); in MakeDirectory() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.h | 18 class PlatformQemuUser : public Platform { 68 return Platform::GetHostPlatform()->GetMmapArgumentList( in GetMmapArgumentList() 76 PlatformQemuUser() : Platform(/*is_host=*/true) {} in PlatformQemuUser()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCAssembler.h | 105 MachO::PlatformType Platform; ///< Used when EmitBuildVersion==true. member 291 void setBuildVersion(MachO::PlatformType Platform, unsigned Major, 295 VersionInfo.TypeOrPlatform.Platform = Platform; 305 void setDarwinTargetVariantBuildVersion(MachO::PlatformType Platform, in setDarwinTargetVariantBuildVersion() argument 310 DarwinTargetVariantVersionInfo.TypeOrPlatform.Platform = Platform; in setDarwinTargetVariantBuildVersion()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | CommandOptionValidators.h | 16 class Platform; variable 20 bool IsValid(Platform &platform,
|
| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/ |
| H A D | dec_osf.pm | 1 package ExtUtils::CBuilder::Platform::dec_osf; 5 use ExtUtils::CBuilder::Platform::Unix; 9 our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
| H A D | aix.pm | 1 package ExtUtils::CBuilder::Platform::aix; 5 use ExtUtils::CBuilder::Platform::Unix; 9 our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
| H A D | cygwin.pm | 1 package ExtUtils::CBuilder::Platform::cygwin; 6 use ExtUtils::CBuilder::Platform::Unix; 9 our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
| H A D | android.pm | 1 package ExtUtils::CBuilder::Platform::android; 6 use ExtUtils::CBuilder::Platform::Unix; 10 our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
| H A D | darwin.pm | 1 package ExtUtils::CBuilder::Platform::darwin; 5 use ExtUtils::CBuilder::Platform::Unix; 9 our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Plugins/Platform/Linux/ |
| H A D | BUILD.gn | 12 "//lldb/source/Plugins/Platform/POSIX", 16 # Reaches into Plugins/Platform/POSIX.
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | OptionGroupArchitecture.cpp | 26 bool OptionGroupArchitecture::GetArchitecture(Platform *platform, in GetArchitecture() 28 arch = Platform::GetAugmentedArchSpec(platform, m_arch_str); in GetArchitecture()
|
| /openbsd-src/gnu/usr.bin/clang/include/lldb/Plugins/ |
| H A D | Makefile | 67 ${LLDB_SRCS}/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td 69 -I${LLDB_SRCS}/source/Plugins/Platform/MacOSX \ 73 ${LLDB_SRCS}/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td 75 -I${LLDB_SRCS}/source/Plugins/Platform/MacOSX \
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/OpenBSD/ |
| H A D | PlatformOpenBSD.cpp | 45 Log *log = GetLog(LLDBLog::Platform); in CreateInstance() 89 Platform::SetHostPlatform(default_platform_sp); in Initialize() 132 Platform::GetStatus(strm); in GetStatus()
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | BUILD.gn | 26 # "//lldb/source/Plugins/Platform/MacOSX", # Dependency cycle 30 # Reaches into Plugins/Platform/MacOSX.
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Android/ |
| H A D | PlatformAndroidRemoteGDBServer.cpp | 33 Log *log = GetLog(LLDBLog::Platform); in ForwardPortWithAdb() 92 Log *log = GetLog(LLDBLog::Platform); in LaunchGDBServer() 150 Log *log = GetLog(LLDBLog::Platform); in ConnectRemote() 166 Log *log = GetLog(LLDBLog::Platform); in DeleteForwardPort()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | RemoteAwarePlatform.h | 19 class RemoteAwarePlatform : public Platform { 21 using Platform::Platform;
|