Home
last modified time | relevance | path

Searched refs:SystemInfo (Results 1 - 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/angle2/src/gpu_info_util/
H A DSystemInfo.h7 // SystemInfo.h: gathers information available without starting a GPU driver.
50 struct SystemInfo struct
52 SystemInfo();
53 ~SystemInfo();
55 SystemInfo(const SystemInfo &other);
89 bool GetSystemInfo(SystemInfo *info);
92 bool GetSystemInfoVulkan(SystemInfo *info);
138 void GetDualGPUInfo(SystemInfo *info);
141 void PrintSystemInfo(const SystemInfo
[all...]
H A DSystemInfo.cpp7 // SystemInfo.cpp: implementation of the system-agnostic parts of SystemInfo.h
9 #include "gpu_info_util/SystemInfo.h"
61 SystemInfo::SystemInfo() = default;
63 SystemInfo::~SystemInfo() = default;
65 SystemInfo::SystemInfo(const SystemInfo
[all...]
H A DSystemInfo_vulkan.h7 // SystemInfo_vulkan.h: Reusable Vulkan implementation for SystemInfo.h
16 struct SystemInfo;
18 // Reusable vulkan implementation of GetSystemInfo(). See SystemInfo.h.
19 bool GetSystemInfoVulkan(SystemInfo *info);
20 bool GetSystemInfoVulkanWithICD(SystemInfo *info, vk::ICD preferredICD);
H A DSystemInfo_internal.h12 #include "gpu_info_util/SystemInfo.h"
23 // Live in SystemInfo.cpp
33 bool GetSystemInfo_mac(SystemInfo *info);
37 bool GetSystemInfo_ios(SystemInfo *info);
H A DSystemInfo_fuchsia.cpp7 // SystemInfo_fuchsia.cpp: implementation of the Fuchsia-specific parts of SystemInfo.h
14 bool GetSystemInfo(SystemInfo *info) in GetSystemInfo()
H A DSystemInfo_ios.cpp7 // SystemInfo_ios.cpp: implementation of the iOS-specific parts of SystemInfo.h
18 bool GetSystemInfo_ios(SystemInfo *info) in GetSystemInfo_ios()
H A DSystemInfo_android.cpp7 // SystemInfo_android.cpp: implementation of the Android-specific parts of SystemInfo.h
37 bool GetSystemInfo(SystemInfo *info) in GetSystemInfo()
H A DSystemInfo_vulkan.cpp7 // SystemInfo_vulkan.cpp: Generic vulkan implementation of SystemInfo.h
117 bool GetSystemInfoVulkan(SystemInfo *info) in GetSystemInfoVulkan()
122 bool GetSystemInfoVulkanWithICD(SystemInfo *info, vk::ICD preferredICD) in GetSystemInfoVulkanWithICD()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A Dangle_test_instantiate.cpp22 #include "gpu_info_util/SystemInfo.h"
106 SystemInfo *systemInfo = GetTestSystemInfo(); in IsAndroidDevice()
120 SystemInfo *systemInfo = GetTestSystemInfo(); in IsAndroid9OrNewer()
130 SystemInfo *systemInfo = GetTestSystemInfo(); in GetActiveGPUDeviceInfo()
186 SystemInfo *GetTestSystemInfo() in GetTestSystemInfo()
188 static SystemInfo *sSystemInfo = nullptr; in GetTestSystemInfo()
191 sSystemInfo = new SystemInfo; in GetTestSystemInfo()
407 bool IsConfigAllowlisted(const SystemInfo &systemInfo, const PlatformParameters &param) in IsConfigAllowlisted()
728 const SystemInfo *systemInfo = GetTestSystemInfo(); in IsPlatformAvailable()
H A Dangle_test_instantiate.h19 struct SystemInfo;
256 bool IsConfigAllowlisted(const SystemInfo &systemInfo, const PlatformParameters &param);
259 // not require SystemInfo.
264 SystemInfo *GetTestSystemInfo();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h23 /// SystemInfo), there is a 1:1 mapping between Types and Kinds, but in general
34 SystemInfo, member in llvm::MinidumpYAML::Stream::StreamKind
161 /// SystemInfo minidump stream.
163 minidump::SystemInfo Info;
167 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo) { in SystemInfoStream()
171 explicit SystemInfoStream(const minidump::SystemInfo &Info, in SystemInfoStream()
173 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo), in SystemInfoStream()
177 return S->Kind == StreamKind::SystemInfo; in classof()
[all...]
/third_party/skia/third_party/externals/angle2/src/feature_support_util/
H A Dfeature_support_util_unittest.cpp11 #include "../gpu_info_util/SystemInfo.h"
33 SystemInfo mSystemInfo;
66 TEST_F(FeatureSupportUtilTest, SystemInfo) in TEST_F()
68 SystemInfo systemInfo = mSystemInfo; in TEST_F()
100 SystemInfo systemInfo = mSystemInfo; in TEST_F()
148 // Test app1 with a SystemInfo that has an unsupported driver--should fail: in TEST_F()
152 // Test app1 with a SystemInfo that has a supported driver--should pass: in TEST_F()
H A Dfeature_support_util.cpp26 #include "../gpu_info_util/SystemInfo.h"
811 angle::SystemInfo *systemInfo = new angle::SystemInfo; in ANGLEGetSystemInfo()
828 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEAddDeviceInfoToSystemInfo()
846 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEShouldBeUsedForApplication()
882 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEFreeSystemInfoHandle()
/third_party/skia/third_party/externals/angle2/src/tests/test_expectations/
H A DGPUTestConfig.cpp16 #include "gpu_info_util/SystemInfo.h"
273 // Generic function call to populate the SystemInfo struct. This function will
274 // also cache the SystemInfo struct for future calls. Returns false if the
276 inline bool GetGPUTestSystemInfo(SystemInfo **sysInfo) in GetGPUTestSystemInfo()
278 static SystemInfo *sSystemInfo = nullptr; in GetGPUTestSystemInfo()
282 sSystemInfo = new SystemInfo; in GetGPUTestSystemInfo()
285 std::cout << "Error populating SystemInfo." << std::endl; in GetGPUTestSystemInfo()
306 // Get the active GPUDeviceInfo from the SystemInfo struct.
310 SystemInfo *systemInfo = nullptr; in GetActiveGPU()
322 // Get the vendor ID of the active GPU from the SystemInfo struc
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp204 case Stream::StreamKind::SystemInfo: {
205 SystemInfoStream &SystemInfo = cast<SystemInfoStream>(S);
206 File.allocateObject(SystemInfo.Info);
209 SystemInfo.Info.CSDVersionRVA = File.allocateString(SystemInfo.CSDVersion);
H A DMinidumpYAML.cpp80 case StreamType::SystemInfo: in getKind()
81 return StreamKind::SystemInfo; in getKind()
110 case StreamKind::SystemInfo: in create()
320 SystemInfo &Info = Stream.Info; in streamMapping()
425 case MinidumpYAML::Stream::StreamKind::SystemInfo: in mapping()
446 case MinidumpYAML::Stream::StreamKind::SystemInfo: in validate()
520 case StreamKind::SystemInfo: { in create()
/third_party/skia/third_party/externals/angle2/src/tests/util_tests/
H A DPrintSystemInfoTest.cpp16 #include "gpu_info_util/SystemInfo.h"
32 SystemInfo info; in TEST()
50 SystemInfo info; in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DMinidump.h58 /// Returns the contents of the SystemInfo stream, cast to the appropriate
60 /// the stream is smaller than the size of the SystemInfo structure. The
62 Expected<const minidump::SystemInfo &> getSystemInfo() const { in getSystemInfo()
63 return getStream<minidump::SystemInfo>(minidump::StreamType::SystemInfo); in getSystemInfo()
/third_party/skia/third_party/externals/angle2/src/tests/
H A Dangle_system_info_tests_main.cpp33 #include "gpu_info_util/SystemInfo.h"
52 angle::SystemInfo info; in main()
166 TEST(ANGLE, SystemInfo) in TEST()
/third_party/benchmark/src/
H A Dsysinfo.cc849 const SystemInfo& SystemInfo::Get() { in Get()
850 static const SystemInfo* info = new SystemInfo(); in Get()
854 SystemInfo::SystemInfo() : name(GetSystemName()) {} in SystemInfo() function in benchmark::SystemInfo
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/apple/
H A DDisplayApple_api.cpp13 #include "gpu_info_util/SystemInfo.h"
34 angle::SystemInfo info; in CreateDisplayCGLOrEAGL()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DMinidump.h127 /// in the ProcessorArch field of the SystemInfo stream.
134 /// PlatformId field of the SystemInfo stream.
159 /// The SystemInfo stream, containing various information about the system where
161 struct SystemInfo { struct
180 static_assert(sizeof(SystemInfo) == 56, "");
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLReadinessCheckTest.cpp12 #include "gpu_info_util/SystemInfo.h"
51 // Cannot make any useful checks if SystemInfo is not supported. in TEST_P()
52 SystemInfo systemInfo; in TEST_P()
/third_party/lzma/CPP/7zip/UI/Console/
H A Dmakefile35 $O\SystemInfo.obj \
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/
H A Dmakefile33 $O\SystemInfo.obj \

Completed in 17 milliseconds

12