Home
last modified time | relevance | path

Searched refs:StreamType (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h43 const minidump::StreamType Type;
46 static StreamKind getKind(minidump::StreamType Type);
49 static std::unique_ptr<Stream> create(minidump::StreamType Type);
75 static constexpr minidump::StreamType Type = minidump::StreamType::ModuleList;
86 static constexpr minidump::StreamType Type = minidump::StreamType::ThreadList;
96 static constexpr minidump::StreamType Type = minidump::StreamType::MemoryList;
113 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream()
133 minidump::StreamType::MemoryInfoList) {} in MemoryInfoListStream()
138 minidump::StreamType::MemoryInfoList), in MemoryInfoListStream()
189 TextContentStream(minidump::StreamType Type, StringRef Text = {})
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h404 template <typename Self, typename StreamType>
428 void newline(StreamType &SS) { in newline()
525 void printNull(StreamType &SS) { in printNull()
671 void printCode(const Code *E, StreamType &SS) { in printCode()
734 void printCall(const Call *E, StreamType &SS) { in printCall()
751 void printLoad(const Load *E, StreamType &SS) { in printLoad()
787 void printCast(const Cast *E, StreamType &SS) { in printCast()
818 void printSCFG(const SCFG *E, StreamType &SS) { in printSCFG()
863 void printPhi(const Phi *E, StreamType &SS) { in printPhi()
878 void printGoto(const Goto *E, StreamType &SS) { in printGoto()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp18 MinidumpFile::getRawStream(minidump::StreamType Type) const { in getRawStream()
59 getRawStream(StreamType::MemoryInfoList); in getMemoryInfoList()
76 Expected<ArrayRef<T>> MinidumpFile::getListStream(StreamType Type) const { in getListStream()
96 MinidumpFile::getListStream(StreamType) const;
98 MinidumpFile::getListStream(StreamType) const;
100 MinidumpFile::getListStream(StreamType) const;
129 DenseMap<StreamType, std::size_t> StreamMap; in create()
131 StreamType Type = StreamDescriptor.value().Type; in create()
139 if (Type == StreamType::Unused && Loc.DataSize == 0) { in create()
145 if (Type == DenseMapInfo<StreamType>::getEmptyKey() || in create()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h46 getRawStream(minidump::StreamType Type) const;
64 return getStream<minidump::SystemInfo>(minidump::StreamType::SystemInfo); in getSystemInfo()
73 return getListStream<minidump::Module>(minidump::StreamType::ModuleList); in getModuleList()
82 return getListStream<minidump::Thread>(minidump::StreamType::ThreadList); in getThreadList()
91 minidump::StreamType::Exception); in getExceptionStream()
103 minidump::StreamType::MemoryList); in getMemoryList()
167 DenseMap<minidump::StreamType, std::size_t> StreamMap) in MinidumpFile() argument
178 Expected<const T &> getStream(minidump::StreamType Stream) const;
183 Expected<ArrayRef<T>> getListStream(minidump::StreamType Stream) const;
187 DenseMap<minidump::StreamType, std::size_t> StreamMap;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h50 enum class StreamType : uint32_t { enum
121 support::little_t<StreamType> Type;
253 template <> struct DenseMapInfo<minidump::StreamType> {
254 static minidump::StreamType getEmptyKey() { return minidump::StreamType(-1); }
256 static minidump::StreamType getTombstoneKey() {
257 return minidump::StreamType(-2);
260 static unsigned getHashValue(minidump::StreamType Val) {
264 static bool isEqual(minidump::StreamType LHS, minidump::StreamType RHS) {
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp819 (unsigned)(StreamType)stream_desc.Type, in DoExecute()
823 auto DumpTextStream = [&](StreamType stream_type, in DoExecute()
832 auto DumpBinaryStream = [&](StreamType stream_type, in DoExecute()
868 DumpTextStream(StreamType::FacebookAppCustomData, in DoExecute()
883 DumpTextStream(StreamType::FacebookAppVersionName, in DoExecute()
886 DumpTextStream(StreamType::FacebookJavaStack, in DoExecute()
889 DumpTextStream(StreamType::FacebookDalvikInfo, in DoExecute()
895 DumpTextStream(StreamType::FacebookDumpErrorLog, in DoExecute()
898 DumpTextStream(StreamType::FacebookAppStateLog, in DoExecute()
901 DumpTextStream(StreamType::FacebookAbortReason, in DoExecute()
[all …]
H A DMinidumpParser.cpp48 llvm::ArrayRef<uint8_t> MinidumpParser::GetStream(StreamType stream_type) { in GetStream()
216 llvm::ArrayRef<uint8_t> data = GetStream(StreamType::MiscInfo); in GetMiscInfo()
225 llvm::ArrayRef<uint8_t> data = GetStream(StreamType::LinuxProcStatus); in GetLinuxProcStatus()
260 auto data = parser.GetStream(StreamType::LinuxMaps); in CreateRegionsCacheFromLinuxMaps()
432 llvm::ArrayRef<uint8_t> data64 = GetStream(StreamType::Memory64List); in FindMemoryRange()
581 parser.GetStream(StreamType::Memory64List); in CreateRegionsCacheFromMemory64List()
630 case StreamType::ST: \
634 MinidumpParser::GetStreamTypeAsString(StreamType stream_type) { in GetStreamTypeAsString()
H A DMinidumpParser.h57 llvm::ArrayRef<uint8_t> GetStream(StreamType stream_type);
95 static llvm::StringRef GetStreamTypeAsString(StreamType stream_type);
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp72 case StreamType::Exception: in getKind()
74 case StreamType::MemoryInfoList: in getKind()
76 case StreamType::MemoryList: in getKind()
78 case StreamType::ModuleList: in getKind()
80 case StreamType::SystemInfo: in getKind()
82 case StreamType::LinuxCPUInfo: in getKind()
85 case StreamType::LinuxCMDLine: in getKind()
86 case StreamType::LinuxMaps: in getKind()
87 case StreamType::LinuxProcStat: in getKind()
90 case StreamType::ThreadList: in getKind()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp45 dir.Type = static_cast<llvm::support::little_t<StreamType>>(type); in AddDirectory()
215 AddDirectory(StreamType::ModuleList, module_stream_size); in AddModuleList()
500 AddDirectory(StreamType::ThreadList, thread_stream_size); in AddThreadList()
675 AddDirectory(StreamType::MemoryList, in AddMemoryList()
691 AddDirectory(StreamType::MiscInfo, in AddMiscInfo()
727 {StreamType::LinuxCPUInfo, "/proc/cpuinfo"}, in AddLinuxFileStreams()
728 {StreamType::LinuxLSBRelease, "/etc/lsb-release"}, in AddLinuxFileStreams()
743 {StreamType::LinuxAuxv, "/proc/" + pid_str + "/auxv"}); in AddLinuxFileStreams()
745 {StreamType::LinuxMaps, "/proc/" + pid_str + "/maps"}); in AddLinuxFileStreams()
749 {StreamType::LinuxProcFD, "/proc/" + pid_str + "/fd"}); in AddLinuxFileStreams()
[all …]
H A DMinidumpFileBuilder.h82 void AddDirectory(llvm::minidump::StreamType type, size_t stream_size);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamRef.h23 template <class RefType, class StreamType> class BinaryStreamRefBase {
26 explicit BinaryStreamRefBase(StreamType &BorrowedImpl) in BinaryStreamRefBase()
32 BinaryStreamRefBase(std::shared_ptr<StreamType> SharedImpl, uint64_t Offset, in BinaryStreamRefBase()
36 BinaryStreamRefBase(StreamType &BorrowedImpl, uint64_t Offset, in BinaryStreamRefBase()
140 std::shared_ptr<StreamType> SharedImpl;
141 StreamType *BorrowedImpl = nullptr;