HomeSort by: relevance | last modified time | path
    Searched refs:SystemInfo (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h 23 /// SystemInfo), there is a 1:1 mapping between Types and Kinds, but in general
34 SystemInfo,
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...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpEmitter.cpp 204 case Stream::StreamKind::SystemInfo: {
205 SystemInfoStream &SystemInfo = cast<SystemInfoStream>(S);
206 File.allocateObject(SystemInfo.Info);
209 SystemInfo.Info.CSDVersionRVA = File.allocateString(SystemInfo.CSDVersion);
MinidumpYAML.cpp 80 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: {
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
reporter.cc 83 : cpu_info(CPUInfo::Get()), sys_info(SystemInfo::Get()) {}
sysinfo.cc 644 const SystemInfo& SystemInfo::Get() {
645 static const SystemInfo* info = new SystemInfo();
649 SystemInfo::SystemInfo() : name(GetSystemName()) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Minidump.h 58 /// 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);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Minidump.h 127 /// 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 {
180 static_assert(sizeof(SystemInfo) == 56, "");
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 1297 struct SystemInfo {
1299 static const SystemInfo& Get();
1301 SystemInfo();
1302 BENCHMARK_DISALLOW_COPY_AND_ASSIGN(SystemInfo);
1314 SystemInfo const& sys_info;

Completed in 33 milliseconds