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

/freebsd-13-stable/contrib/ntp/lib/isc/win32/
H A Dos.c25 static SYSTEM_INFO SystemInfo; variable
32 GetSystemInfo(&SystemInfo);
40 ncpus = SystemInfo.dwNumberOfProcessors;
/freebsd-13-stable/contrib/llvm-project/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 class:llvm::MinidumpYAML::Stream::StreamKind
161 /// SystemInfo minidump stream.
163 minidump::SystemInfo Info;
167 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo) {
171 explicit SystemInfoStream(const minidump::SystemInfo &Info,
173 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo),
177 return S->Kind == StreamKind::SystemInfo;
[all...]
/freebsd-13-stable/contrib/llvm-project/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:
81 return StreamKind::SystemInfo;
110 case StreamKind::SystemInfo:
320 SystemInfo &Info = Stream.Info;
425 case MinidumpYAML::Stream::StreamKind::SystemInfo:
446 case MinidumpYAML::Stream::StreamKind::SystemInfo:
520 case StreamKind::SystemInfo: {
/freebsd-13-stable/contrib/llvm-project/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 {
63 return getStream<minidump::SystemInfo>(minidump::StreamType::SystemInfo);
/freebsd-13-stable/contrib/llvm-project/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 in namespace:llvm::minidump
180 static_assert(sizeof(SystemInfo) == 56, "");
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp151 llvm::Expected<const SystemInfo &> system_info = m_file->getSystemInfo();
156 "Failed to read SystemInfo stream: {0}");
556 ENUM_TO_CSTR(SystemInfo);

Completed in 177 milliseconds