Searched refs:minidump (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-11-stable/sys/pc98/include/
H A Dminidump.h6 #include <i386/minidump.h>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMinidump.cpp11 using namespace llvm::minidump;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h20 /// The base class for all minidump streams. The "Type" of the stream
21 /// corresponds to the Stream Type field in the minidump file. The "Kind" field
39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {}
43 const minidump::StreamType Type;
46 static StreamKind getKind(minidump::StreamType Type);
49 static std::unique_ptr<Stream> create(minidump::StreamType Type);
53 create(const minidump::Directory &StreamDesc,
58 /// A stream representing a list of abstract entries in a minidump stream. Its
72 /// A structure containing all data belonging to a single minidump module.
75 static constexpr minidump
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h22 /// A class providing access to the contents of a minidump file.
26 /// an error if this file cannot be identified as a minidump file, or if its
32 /// Returns the contents of the minidump header.
33 const minidump::Header &header() const { return Header; }
36 ArrayRef<minidump::Directory> streams() const { return Streams; }
39 ArrayRef<uint8_t> getRawStream(const minidump::Directory &Stream) const {
45 Optional<ArrayRef<uint8_t>> getRawStream(minidump::StreamType Type) const;
48 /// error is returned if the descriptor points outside of the minidump file.
50 getRawData(minidump::LocationDescriptor Desc) const {
54 /// Returns the minidump strin
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DThreadMinidump.h19 namespace minidump { namespace in namespace:lldb_private
23 ThreadMinidump(Process &process, const minidump::Thread &td,
42 } // namespace minidump
H A DMinidumpParser.h34 namespace minidump { namespace in namespace:lldb_private
59 UUID GetModuleUUID(const minidump::Module *module);
61 llvm::ArrayRef<minidump::Thread> GetThreads();
65 llvm::ArrayRef<uint8_t> GetThreadContext(const minidump::Thread &td);
67 llvm::ArrayRef<uint8_t> GetThreadContextWow64(const minidump::Thread &td);
77 llvm::ArrayRef<minidump::Module> GetModuleList();
83 std::vector<const minidump::Module *> GetFilteredModuleList();
85 const llvm::minidump::ExceptionStream *GetExceptionStream();
109 } // end namespace minidump
H A DProcessMinidump.h27 namespace minidump { namespace in namespace:lldb_private
110 llvm::ArrayRef<minidump::Thread> m_thread_list;
111 const minidump::ExceptionStream *m_active_exception;
119 } // namespace minidump
H A DNtStructures.h16 namespace minidump { namespace in namespace:lldb_private
35 } // namespace minidump
H A DMinidumpTypes.h33 namespace minidump { namespace in namespace:lldb_private
35 using namespace llvm::minidump;
121 } // namespace minidump
H A DMinidumpParser.cpp25 using namespace minidump;
30 llvm::MemoryBufferRef(toStringRef(data_sp->GetData()), "minidump"));
51 UUID MinidumpParser::GetModuleUUID(const minidump::Module *module) {
92 llvm::ArrayRef<minidump::Thread> MinidumpParser::GetThreads() {
111 MinidumpParser::GetThreadContext(const minidump::Thread &td) {
116 MinidumpParser::GetThreadContextWow64(const minidump::Thread &td) {
118 // the minidump was captured with a 64-bit debugger, then the CONTEXT we just
161 // TODO set the arm subarch stuff if the minidump has info about it
259 llvm::ArrayRef<minidump::Module> MinidumpParser::GetModuleList() {
270 std::vector<const minidump
[all...]
H A DRegisterContextMinidump_x86_32.cpp17 using namespace minidump;
24 lldb::DataBufferSP lldb_private::minidump::ConvertMinidumpContext_x86_32(
H A DThreadMinidump.cpp34 using namespace minidump;
36 ThreadMinidump::ThreadMinidump(Process &process, const minidump::Thread &td,
H A DRegisterContextMinidump_ARM64.h25 namespace minidump { namespace in namespace:lldb_private
80 } // end namespace minidump
H A DRegisterContextMinidump_ARM.h26 namespace minidump { namespace in namespace:lldb_private
96 } // end namespace minidump
/freebsd-11-stable/sys/powerpc/powerpc/
H A Ddump_machdep.c37 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RWTUN, &do_minidump, 0,
/freebsd-11-stable/sys/riscv/riscv/
H A Ddump_machdep.c49 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RWTUN, &do_minidump, 0,
H A Dminidump_machdep.c48 #include <machine/minidump.h>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp15 using namespace llvm::minidump;
18 MinidumpFile::getRawStream(minidump::StreamType Type) const {
62 getDataSliceAs<minidump::MemoryInfoListHeader>(*Stream, 0, 1);
65 const minidump::MemoryInfoListHeader &H = ExpectedHeader.get()[0];
113 auto ExpectedHeader = getDataSliceAs<minidump::Header>(Data, 0, 1);
117 const minidump::Header &Hdr = (*ExpectedHeader)[0];
146 return createError("Cannot handle one of the minidump streams");
/freebsd-11-stable/sys/arm64/arm64/
H A Ddump_machdep.c45 TUNABLE_INT("debug.minidump", &do_minidump);
46 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RW, &do_minidump, 0,
/freebsd-11-stable/sbin/dumpon/
H A Ddumpon.c79 int minidump; local
81 len = sizeof(minidump);
82 if (sysctlbyname("debug.minidump", &minidump, &len, NULL, 0) == 0 &&
83 minidump == 1)
/freebsd-11-stable/sys/mips/mips/
H A Ddump_machdep.c40 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RWTUN, &do_minidump, 0,
/freebsd-11-stable/sys/x86/x86/
H A Ddump_machdep.c41 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RWTUN, &do_minidump, 0,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h26 namespace minidump { namespace in namespace:llvm
30 /// The minidump header is the first part of a minidump file. It identifies the
31 /// file as a minidump file, and gives the location of the stream directory.
48 /// The type of a minidump stream identifies its contents. Streams numbers after
57 /// Specifies the location (and size) of various objects in the minidump file.
66 /// the file) of the process from which this minidump file was generated.
117 /// Specifies the location and type of a single stream in the minidump file. The
118 /// minidump stream directory is an array of entries of this type, with its size
126 /// The processor architecture of the system that generated this minidump
[all...]
H A DMagic.h42 minidump, ///< Windows minidump file enumerator in enum:llvm::file_magic::Impl
/freebsd-11-stable/sys/arm/arm/
H A Ddump_machdep.c50 SYSCTL_INT(_debug, OID_AUTO, minidump, CTLFLAG_RWTUN, &do_minidump, 0,

Completed in 272 milliseconds

12