Lines Matching full:minidump
34 // synth_minidump.h: Interface to SynthMinidump: fake minidump generator.
36 // We treat a minidump file as the concatenation of a bunch of
39 // that eventually gets appended to the minidump. Dump, Memory,
49 // Dump minidump(MD_NORMAL, kLittleEndian);
51 // Memory stack1(minidump, 0x569eb0a9);
59 // Context context1(minidump, x86_context1);
61 // Thread thread1(minidump, 0xe4a4821d, stack1, context1);
63 // minidump.Add(&stack1);
64 // minidump.Add(&context1);
65 // minidump.Add(&thread1);
66 // minidump.Finish();
69 // EXPECT_TRUE(minidump.GetContents(&contents));
70 // // contents now holds the bytes of a minidump file
74 // flexibility in how we put the dump together: minidump pieces can
75 // hold the file offsets of other minidump pieces before the
82 // minidump, but they also do two other things:
135 // A test_assembler::Section which will be appended to a minidump.
151 // been placed in the minidump file at OFFSET. The 'Add' member
159 // This section's size and offset within the minidump file.
163 // A stream within a minidump file. 'Add'ing a stream to a minidump
164 // creates an entry for it in the minidump's stream directory.
208 // A range of memory contents. 'Add'ing a memory range to a minidump
209 // creates n entry for it in the minidump's memory list. By
255 // descriptior in the minidump will have a length of zero.
338 // Create a test_assembler::Section containing a minidump file whose
348 // contents of OBJECT to this minidump. They also record OBJECT in
359 // Complete the construction of the minidump, given the Add calls
366 // A label representing the start of the minidump file.
376 // This minidump's thread list. We construct this incrementally from
380 // This minidump's module list. We construct this incrementally from
384 // This minidump's unloaded module list. We construct this incrementally from
388 // This minidump's memory list. We construct this incrementally from