Home
last modified time | relevance | path

Searched refs:MDRawContextX86 (Results 1 – 22 of 22) 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_;
Dmicrodump.cc136 void MicrodumpContext::SetContextX86(MDRawContextX86* x86) { in SetContextX86()
333 if (cpu_state_raw.size() != sizeof(MDRawContextX86)) { in Microdump()
335 << " bytes instead of " << sizeof(MDRawContextX86) in Microdump()
339 MDRawContextX86* x86 = new MDRawContextX86(); in Microdump()
Dminidump_unittest.cc227 MDRawContextX86 raw_context; in TEST()
294 const MDRawContextX86 *md_raw_context = md_context->GetContextX86(); in TEST()
318 MDRawContextX86 raw_context; in TEST()
800 MDRawContextX86 raw_context0; in TEST()
812 MDRawContextX86 raw_context1; in TEST()
824 MDRawContextX86 raw_context2; in TEST()
836 MDRawContextX86 raw_context3; in TEST()
848 MDRawContextX86 raw_context4; in TEST()
1052 MDRawContextX86 raw_context; in TEST()
1103 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()
Dsynth_minidump_unittest.cc149 MDRawContextX86 raw; in TEST()
157 MDRawContextX86 raw; in TEST()
Ddump_context.cc70 const MDRawContextX86* DumpContext::GetContextX86() const { in GetContextX86()
235 void DumpContext::SetContextX86(MDRawContextX86* x86) { in SetContextX86()
321 const MDRawContextX86* context_x86 = GetContextX86(); in Print()
Dminidump_processor_unittest.cc334 explicit TestMinidumpContext(const MDRawContextX86& context) : in TestMinidumpContext()
337 SetContextX86(new MDRawContextX86(context)); in TestMinidumpContext()
389 MDRawContextX86 thread_raw_context; in TEST_F()
626 MDRawContextX86 no_memory_thread_raw_context; in TEST_F()
Dsynth_minidump.cc126 Context::Context(const Dump &dump, const MDRawContextX86 &context) in Context()
173 assert(Size() == sizeof(MDRawContextX86)); in Context()
Dsynth_minidump.h229 Context(const Dump &dump, const MDRawContextX86 &context);
Dminidump.cc81 if (context_size == sizeof(MDRawContextX86)) in IsContextSizeUnique()
783 if (expected_size != sizeof(MDRawContextX86)) { in Read()
785 expected_size << " != " << sizeof(MDRawContextX86); in Read()
789 scoped_ptr<MDRawContextX86> context_x86(new MDRawContextX86()); in Read()
800 sizeof(MDRawContextX86) - flags_size)) { in Read()
Dstackwalker_x86_unittest.cc134 void BrandContext(MDRawContextX86 *raw_context) { in BrandContext()
141 MDRawContextX86 raw_context;
2161 MDRawContextX86 expected;
/external/google-breakpad/src/google_breakpad/processor/
Ddump_context.h64 const MDRawContextX86* GetContextX86() const;
82 void SetContextX86(MDRawContextX86* x86);
98 MDRawContextX86* x86;
Dmicrodump.h72 virtual void SetContextX86(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.cc808 TypedMDRVA<MDRawContextX86> context(&writer_); in WriteContextX86()
816 MDRawContextX86 *context_ptr = context.get(); in WriteContextX86()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc367 const MDRawContextX86* rawregs = range.GetData<MDRawContextX86>(0); in ParseThreadRegisters()