Home
last modified time | relevance | path

Searched refs:MDRawContextMIPS (Results 1 – 16 of 16) sorted by relevance

/external/google-breakpad/src/processor/
Dmicrodump.cc142 void MicrodumpContext::SetContextMIPS(MDRawContextMIPS* mips32) { in SetContextMIPS()
148 void MicrodumpContext::SetContextMIPS64(MDRawContextMIPS* mips64) { in SetContextMIPS64()
343 if (cpu_state_raw.size() != sizeof(MDRawContextMIPS)) { in Microdump()
345 << " bytes instead of " << sizeof(MDRawContextMIPS) in Microdump()
349 MDRawContextMIPS* mips32 = new MDRawContextMIPS(); in Microdump()
353 if (cpu_state_raw.size() != sizeof(MDRawContextMIPS)) { in Microdump()
355 << " bytes instead of " << sizeof(MDRawContextMIPS) in Microdump()
359 MDRawContextMIPS* mips64 = new MDRawContextMIPS(); in Microdump()
Dstackwalker_mips.h57 const MDRawContextMIPS* context,
80 const MDRawContextMIPS* context_;
Ddump_context.cc133 const MDRawContextMIPS* DumpContext::GetContextMIPS() const { in GetContextMIPS()
263 void DumpContext::SetContextMIPS(MDRawContextMIPS* ctx_mips) { in SetContextMIPS()
612 const MDRawContextMIPS* context_mips = GetContextMIPS(); in Print()
Dsynth_minidump.cc195 Context::Context(const Dump &dump, const MDRawContextMIPS &context) in Context()
228 assert(Size() == sizeof(MDRawContextMIPS)); in Context()
Dstackwalker_mips_unittest.cc126 void BrandContext(MDRawContextMIPS* raw_context) { in BrandContext()
133 MDRawContextMIPS raw_context;
639 MDRawContextMIPS expected;
Dstackwalker_mips64_unittest.cc127 void BrandContext(MDRawContextMIPS* raw_context) { in BrandContext()
134 MDRawContextMIPS raw_context;
648 MDRawContextMIPS expected;
Dsynth_minidump.h231 Context(const Dump &dump, const MDRawContextMIPS &context);
Dstackwalker_mips.cc52 const MDRawContextMIPS* context, in StackwalkerMIPS()
Dminidump.cc97 if (context_size == sizeof(MDRawContextMIPS)) in IsContextSizeUnique()
1096 if (expected_size != sizeof(MDRawContextMIPS)) { in Read()
1100 << sizeof(MDRawContextMIPS); in Read()
1104 scoped_ptr<MDRawContextMIPS> context_mips(new MDRawContextMIPS()); in Read()
1115 sizeof(MDRawContextMIPS) - flags_size)) { in Read()
Dminidump_unittest.cc1518 MDRawContextMIPS raw_context; in TEST()
1590 const MDRawContextMIPS* md_raw_context = md_context->GetContextMIPS(); in TEST()
/external/google-breakpad/src/google_breakpad/processor/
Ddump_context.h60 const MDRawContextMIPS* GetContextMIPS() const;
89 void SetContextMIPS(MDRawContextMIPS* ctx_mips);
107 MDRawContextMIPS* ctx_mips;
Dmicrodump.h73 virtual void SetContextMIPS(MDRawContextMIPS* mips32);
74 virtual void SetContextMIPS64(MDRawContextMIPS* mips64);
Dstack_frame_cpu.h391 MDRawContextMIPS context;
/external/google-breakpad/src/client/linux/dump_writer_common/
Draw_context_cpu.h46 typedef MDRawContextMIPS RawContextCPU;
/external/google-breakpad/src/google_breakpad/common/
Dminidump_cpu_mips.h119 } MDRawContextMIPS; typedef
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc511 const MDRawContextMIPS* rawregs = range.GetData<MDRawContextMIPS>(0); in ParseThreadRegisters()