Home
last modified time | relevance | path

Searched refs:Platform (Results 1 – 25 of 181) sorted by relevance

12345678

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp54 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 DPlatform.cpp61 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 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=x64 %solution% >> %log%
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DTarget.h31 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 DPlatform.h25 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 DTarget.cpp22 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 DPlatform.cpp21 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 DTextStubCommon.cpp108 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 DAvailability.h38 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 DPlatformRemoteGDBServer.cpp53 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 DMCMachObjectWriter.h100 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 DPlatformOpenBSD.cpp44 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 Dpackage.gsl139 …<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 Dsparc_sun_oracle_rng.txt7 - '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 DPlatformQemuUser.h18 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 DCommandOptionValidators.h16 class Platform; variable
20 bool IsValid(Platform &platform,
/freebsd/sys/contrib/device-tree/Bindings/nds32/
H A Dandestech-boards1 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 DOptionGroupArchitecture.cpp26 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 DRemoteAwarePlatform.h19 class RemoteAwarePlatform : public Platform {
21 using Platform::Platform;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp49 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 DMCMachOStreamer.cpp97 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 Dti,cp-intc.txt1 * TI Common Platform Interrupt Controller
3 Common Platform Interrupt Controller (cp_intc) is used on
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDiagnosticBuilderWrappers.cpp32 const PlatformType &Platform) { in operator <<() argument
33 DB.AddString(getPlatformName(Platform)); in operator <<()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp69 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 Dlldb-private-types.h25 class Platform; variable
128 virtual bool IsValid(Platform &platform,

12345678