Home
last modified time | relevance | path

Searched refs:MDRawContextX86 (Results 1 – 20 of 20) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalker_x86.cc68 StackFrameX86::CONTEXT_VALID_EIP, &MDRawContextX86::eip },
70 StackFrameX86::CONTEXT_VALID_ESP, &MDRawContextX86::esp },
72 StackFrameX86::CONTEXT_VALID_EBP, &MDRawContextX86::ebp },
74 StackFrameX86::CONTEXT_VALID_EAX, &MDRawContextX86::eax },
76 StackFrameX86::CONTEXT_VALID_EBX, &MDRawContextX86::ebx },
78 StackFrameX86::CONTEXT_VALID_ECX, &MDRawContextX86::ecx },
80 StackFrameX86::CONTEXT_VALID_EDX, &MDRawContextX86::edx },
82 StackFrameX86::CONTEXT_VALID_ESI, &MDRawContextX86::esi },
84 StackFrameX86::CONTEXT_VALID_EDI, &MDRawContextX86::edi },
88 const MDRawContextX86* context, in StackwalkerX86()
Dstackwalker_x86.h63 const MDRawContextX86* context,
70 typedef SimpleCFIWalker<uint32_t, MDRawContextX86> CFIWalker;
104 const MDRawContextX86* context_;
Dminidump_unittest.cc215 MDRawContextX86 raw_context; in TEST()
282 const MDRawContextX86 *md_raw_context = md_context->GetContextX86(); in TEST()
306 MDRawContextX86 raw_context; in TEST()
487 MDRawContextX86 raw_context0; in TEST()
499 MDRawContextX86 raw_context1; in TEST()
511 MDRawContextX86 raw_context2; in TEST()
523 MDRawContextX86 raw_context3; in TEST()
535 MDRawContextX86 raw_context4; in TEST()
690 MDRawContextX86 raw_context; in TEST()
741 const MDRawContextX86 *md_raw_context = md_context->GetContextX86(); in TEST()
[all …]
Dsynth_minidump_unittest_data.h11 static const MDRawContextX86 x86_raw_context = {
Dstackwalker_selftest.cc322 MDRawContextX86 context = MDRawContextX86(); in CountCallerFrames()
Ddump_context.cc73 const MDRawContextX86* DumpContext::GetContextX86() const { in GetContextX86()
192 void DumpContext::SetContextX86(MDRawContextX86* x86) { in SetContextX86()
277 const MDRawContextX86* context_x86 = GetContextX86(); in Print()
Dsynth_minidump_unittest.cc149 MDRawContextX86 raw; in TEST()
157 MDRawContextX86 raw; in TEST()
Dminidump_processor_unittest.cc312 explicit TestMinidumpContext(const MDRawContextX86& context) : in TestMinidumpContext()
315 SetContextX86(new MDRawContextX86(context)); in TestMinidumpContext()
521 MDRawContextX86 no_memory_thread_raw_context; in TEST_F()
Dsynth_minidump.cc129 Context::Context(const Dump &dump, const MDRawContextX86 &context) in Context()
176 assert(Size() == sizeof(MDRawContextX86)); in Context()
Dsynth_minidump.h229 Context(const Dump &dump, const MDRawContextX86 &context);
Dminidump.cc82 if (context_size == sizeof(MDRawContextX86)) in IsContextSizeUnique()
765 if (expected_size != sizeof(MDRawContextX86)) { in Read()
767 expected_size << " != " << sizeof(MDRawContextX86); in Read()
771 scoped_ptr<MDRawContextX86> context_x86(new MDRawContextX86()); in Read()
782 sizeof(MDRawContextX86) - flags_size)) { in Read()
Dstackwalker_x86_unittest.cc133 void BrandContext(MDRawContextX86 *raw_context) { in BrandContext()
140 MDRawContextX86 raw_context;
2023 MDRawContextX86 expected;
/external/google-breakpad/src/google_breakpad/processor/
Ddump_context.h64 const MDRawContextX86* GetContextX86() const;
78 void SetContextX86(MDRawContextX86* x86);
94 MDRawContextX86* x86;
Dstack_frame_cpu.h87 MDRawContextX86 context;
/external/google-breakpad/src/client/solaris/handler/
Dminidump_generator.cc198 bool WriteContext(MDRawContextX86 *context, prgregset_t regs, in WriteContext()
261 TypedMDRVA<MDRawContextX86> context(minidump_writer); in WriteCrashedLwpStream()
265 memset(context.get(), 0, sizeof(MDRawContextX86)); in WriteCrashedLwpStream()
301 TypedMDRVA<MDRawContextX86> context(minidump_writer); in WriteLwpStream()
307 memset(context.get(), 0, sizeof(MDRawContextX86)); in WriteLwpStream()
617 TypedMDRVA<MDRawContextX86> context(minidump_writer); in WriteExceptionStream()
621 memset(context.get(), 0, sizeof(MDRawContextX86)); in WriteExceptionStream()
/external/google-breakpad/src/client/linux/dump_writer_common/
Draw_context_cpu.h38 typedef MDRawContextX86 RawContextCPU;
/external/google-breakpad/src/google_breakpad/common/
Dminidump_cpu_x86.h141 } MDRawContextX86; /* CONTEXT */ typedef
/external/google-breakpad/src/processor/testdata/
Dminidump2.dump.out90 MDRawContextX86
141 MDRawContextX86
637 MDRawContextX86
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc788 TypedMDRVA<MDRawContextX86> context(&writer_); in WriteContextX86()
796 MDRawContextX86 *context_ptr = context.get(); in WriteContextX86()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc254 const MDRawContextX86* rawregs = range.GetData<MDRawContextX86>(0); in ParseThreadRegisters()