/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RemoteAwarePlatform.cpp | 54 return Platform::ResolveExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable() 74 return Platform::RunShellCommand(shell, command, working_dir, status_ptr, in RunShellCommand() 82 return Platform::MakeDirectory(file_spec, file_permissions); in MakeDirectory() 90 return Platform::GetFilePermissions(file_spec, file_permissions); in GetFilePermissions() 98 return Platform::SetFilePermissions(file_spec, file_permissions); in SetFilePermissions() 106 return Platform::OpenFile(file_spec, flags, mode, error); in OpenFile() 112 return Platform::CloseFile(fd, error); in CloseFile() 120 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 128 return Platform::WriteFile(fd, offset, src, src_len, error); in WriteFile() 134 return Platform::GetFileSize(file_spec); in GetFileSize() [all …]
|
H A D | Platform.cpp | 61 const char *Platform::GetHostPlatformName() { return "host"; } in GetHostPlatformName() 134 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform() 136 void Platform::Initialize() {} in Initialize() 138 void Platform::Terminate() {} in Terminate() 140 PlatformProperties &Platform::GetGlobalPlatformProperties() { in GetGlobalPlatformProperties() 145 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform() 151 Status Platform::GetFileWithUUID(const FileSpec &platform_file, in GetFileWithUUID() 159 Platform::LocateExecutableScriptingResources(Target *target, Module &module, in LocateExecutableScriptingResources() 164 Status Platform::GetSharedModule( in GetSharedModule() 204 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/build/ |
H A D | buildbase.bat | 16 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=x64 %solution% >> %log% [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | Target.h | 31 Target(Architecture Arch, PlatformType Platform, 33 : Arch(Arch), Platform(Platform), MinDeployment(MinDeployment) {} in Arch() 35 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformType(Triple)), in Target() 43 PlatformType Platform; variable 49 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform); 58 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
|
H A D | Platform.h | 25 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim); 28 StringRef getPlatformName(PlatformType Platform); 30 std::string getOSAndEnvironmentName(PlatformType Platform,
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Target.cpp | 22 PlatformType Platform; in create() local 23 Platform = StringSwitch<PlatformType>(PlatformStr) in create() 30 if (Platform == PLATFORM_UNKNOWN) { in create() 35 Platform = (PlatformType)RawValue; in create() 39 return Target{Architecture, Platform}; in create() 45 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + in create() 58 Result.insert({Target.Platform, Target.MinDeployment}); in operator <<() 65 Result.insert(Target.Platform); in mapToPlatformVersionSet() 81 getOSAndEnvironmentName(Targ.Platform, Version))
|
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() 69 StringRef getPlatformName(PlatformType Platform) { in getPlatformName() argument 70 switch (Platform) { in getPlatformName() 90 std::string getOSAndEnvironmentName(PlatformType Platform, in getOSAndEnvironmentName() argument 92 switch (Platform) { in getOSAndEnvironmentName()
|
H A D | TextStubCommon.cpp | 108 auto Platform = StringSwitch<PlatformType>(Scalar) in input() local 119 if (Platform == PLATFORM_MACCATALYST) in input() 123 if (Platform == PLATFORM_UNKNOWN) in input() 126 Values.insert(Platform); in input()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Availability.h | 38 StringRef Platform; variable 43 AvailabilitySpec(VersionTuple Version, StringRef Platform, in AvailabilitySpec() argument 45 : Version(Version), Platform(Platform), BeginLoc(BeginLoc), in AvailabilitySpec() 53 StringRef getPlatform() const { return Platform; } in getPlatform()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 53 Platform::Initialize(); in Initialize() 70 Platform::Terminate(); in Terminate() 104 Log *log = GetLog(LLDBLog::Platform); in GetModuleSpec() 140 : Platform(/*is_host=*/false) {} in PlatformRemoteGDBServer() 183 Log *log = GetLog(LLDBLog::Platform); in GetRemoteWorkingDirectory() 191 return Platform::GetRemoteWorkingDirectory(); in GetRemoteWorkingDirectory() 200 Log *log = GetLog(LLDBLog::Platform); in SetRemoteWorkingDirectory() 205 return Platform::SetRemoteWorkingDirectory(working_dir); in SetRemoteWorkingDirectory() 325 Log *log = GetLog(LLDBLog::Platform); in LaunchProcess() 547 Log *log = GetLog(LLDBLog::Platform); in MakeDirectory() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCMachObjectWriter.h | 100 MachO::PlatformType Platform; ///< Used when EmitBuildVersion==true. member 234 void setBuildVersion(MachO::PlatformType Platform, unsigned Major, 238 VersionInfo.TypeOrPlatform.Platform = Platform; 244 void setTargetVariantBuildVersion(MachO::PlatformType Platform, in setTargetVariantBuildVersion() argument 248 TargetVariantVersionInfo.TypeOrPlatform.Platform = Platform; in setTargetVariantBuildVersion()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/ |
H A D | PlatformOpenBSD.cpp | 44 Log *log = GetLog(LLDBLog::Platform); in CreateInstance() 82 Platform::Initialize(); in Initialize() 88 Platform::SetHostPlatform(default_platform_sp); in Initialize() 129 Platform::GetStatus(strm); in GetStatus()
|
/freebsd/sys/contrib/libsodium/packaging/nuget/ |
H A D | package.gsl | 139 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… 144 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… 149 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p… 154 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p… 161 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… 166 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… 171 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p… 176 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p… 183 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… 188 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package… [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/rng/ |
H A D | sparc_sun_oracle_rng.txt | 7 - 'SUNW,n2-rng' for Niagara 2 Platform (SUN UltraSPARC T2 CPU) 8 - 'SUNW,vf-rng' for Victoria Falls Platform (SUN UltraSPARC T2 Plus CPU) 9 …- 'SUNW,kt-rng' for Rainbow/Yosemite Falls Platform (SUN SPARC T3/T4), (UltraSPARC KT/Niagara 3 - …
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandOptionValidators.h | 16 class Platform; variable 20 bool IsValid(Platform &platform,
|
/freebsd/sys/contrib/device-tree/Bindings/nds32/ |
H A D | andestech-boards | 1 Andestech(nds32) AE3XX Platform 18 Andestech(nds32) AG101P Platform 20 AG101P is a generic SoC Platform IP that works with any of Andestech(nds32)
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RemoteAwarePlatform.h | 19 class RemoteAwarePlatform : public Platform { 21 using Platform::Platform;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
H A D | PlatformFreeBSD.cpp | 49 Log *log = GetLog(LLDBLog::Platform); in CreateInstance() 87 Platform::Initialize(); in Initialize() 93 Platform::SetHostPlatform(default_platform_sp); in Initialize() 140 Platform::GetStatus(strm); in GetStatus()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCMachOStreamer.cpp | 97 void emitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor, 99 void emitDarwinTargetVariantBuildVersion(unsigned Platform, unsigned Major, 258 void MCMachOStreamer::emitBuildVersion(unsigned Platform, unsigned Major, in emitBuildVersion() argument 261 getWriter().setBuildVersion((MachO::PlatformType)Platform, Major, Minor, in emitBuildVersion() 266 unsigned Platform, unsigned Major, unsigned Minor, unsigned Update, in emitDarwinTargetVariantBuildVersion() argument 268 getWriter().setTargetVariantBuildVersion((MachO::PlatformType)Platform, Major, in emitDarwinTargetVariantBuildVersion()
|
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | ti,cp-intc.txt | 1 * TI Common Platform Interrupt Controller 3 Common Platform Interrupt Controller (cp_intc) is used on
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | DiagnosticBuilderWrappers.cpp | 32 const PlatformType &Platform) { in operator <<() argument 33 DB.AddString(getPlatformName(Platform)); in operator <<()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
H A D | PlatformPOSIX.cpp | 69 static uint32_t chown_file(Platform *platform, const char *path, in chown_file() 95 Log *log = GetLog(LLDBLog::Platform); in PutFile() 153 return Platform::PutFile(source, destination, uid, gid); in PutFile() 160 Log *log = GetLog(LLDBLog::Platform); in GetFile() 265 return Platform::GetFile(source, destination); in GetFile() 300 return Platform::GetRemoteUnixSignals(); in GetRemoteUnixSignals() 367 Log *log = GetLog(LLDBLog::Platform); in Attach() 421 Log *log = GetLog(LLDBLog::Platform); in DebugProcess()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-private-types.h | 25 class Platform; variable 128 virtual bool IsValid(Platform &platform,
|