Home
last modified time | relevance | path

Searched refs:MD_CONTEXT_X86 (Results 1 – 14 of 14) sorted by relevance

/external/google-breakpad/src/google_breakpad/common/
Dminidump_cpu_x86.h146 #define MD_CONTEXT_X86 0x00010000 macro
148 #define MD_CONTEXT_X86_CONTROL (MD_CONTEXT_X86 | 0x00000001)
150 #define MD_CONTEXT_X86_INTEGER (MD_CONTEXT_X86 | 0x00000002)
152 #define MD_CONTEXT_X86_SEGMENTS (MD_CONTEXT_X86 | 0x00000004)
154 #define MD_CONTEXT_X86_FLOATING_POINT (MD_CONTEXT_X86 | 0x00000008)
156 #define MD_CONTEXT_X86_DEBUG_REGISTERS (MD_CONTEXT_X86 | 0x00000010)
158 #define MD_CONTEXT_X86_EXTENDED_REGISTERS (MD_CONTEXT_X86 | 0x00000020)
160 #define MD_CONTEXT_X86_XSTATE (MD_CONTEXT_X86 | 0x00000040)
/external/google-breakpad/src/processor/
Dexploitability_win.cc110 case MD_CONTEXT_X86: in CheckPlatformExploitability()
208 context->GetContextCPU() == MD_CONTEXT_X86 && in CheckPlatformExploitability()
Ddump_context.cc74 if (GetContextCPU() != MD_CONTEXT_X86) { in GetContextX86()
174 case MD_CONTEXT_X86: in GetInstructionPointer()
226 case MD_CONTEXT_X86: in FreeContext()
276 case MD_CONTEXT_X86: { in Print()
Dsynth_minidump_unittest.cc127 assert(x86_raw_context.context_flags & MD_CONTEXT_X86); in TEST()
158 raw.context_flags = MD_CONTEXT_X86; in TEST()
Dminidump_unittest.cc276 ASSERT_EQ((uint32_t) MD_CONTEXT_X86, md_context->GetContextCPU()); in TEST()
740 ASSERT_EQ((uint32_t) MD_CONTEXT_X86, md_context->GetContextCPU()); in TEST()
814 ASSERT_EQ((uint32_t) MD_CONTEXT_X86, md_context->GetContextCPU()); in TEST()
900 ASSERT_EQ((uint32_t) MD_CONTEXT_X86, md_context->GetContextCPU()); in TEST()
907 ASSERT_EQ((uint32_t) (MD_CONTEXT_X86), md_raw_context->context_flags); in TEST()
Dstackwalker.cc206 case MD_CONTEXT_X86: in StackwalkerForCPU()
Dsynth_minidump.cc135 (context.context_flags & MD_CONTEXT_X86)); in Context()
Dminidump_processor_unittest.cc316 SetContextFlags(MD_CONTEXT_X86); in TestMinidumpContext()
Dminidump.cc764 case MD_CONTEXT_X86: { in Read()
1130 case MD_CONTEXT_X86: in CheckAgainstSystemInfo()
4057 *context_cpu_flags = MD_CONTEXT_X86; in GetContextCPUFlagsFromSystemInfo()
/external/google-breakpad/src/client/mac/tests/
Dspawn_child_process.h70 MD_CONTEXT_X86
Dminidump_generator_test.cc287 MD_CONTEXT_X86 in TEST_F()
Dcrash_generation_server_test.cc325 MD_CONTEXT_X86 in TEST_F()
/external/v8/tools/
Dgrokdump.py278 MD_CONTEXT_X86 = 0x00010000 variable
279 MD_CONTEXT_X86_CONTROL = (MD_CONTEXT_X86 | 0x00000001)
280 MD_CONTEXT_X86_INTEGER = (MD_CONTEXT_X86 | 0x00000002)
281 MD_CONTEXT_X86_SEGMENTS = (MD_CONTEXT_X86 | 0x00000004)
282 MD_CONTEXT_X86_FLOATING_POINT = (MD_CONTEXT_X86 | 0x00000008)
283 MD_CONTEXT_X86_DEBUG_REGISTERS = (MD_CONTEXT_X86 | 0x00000010)
284 MD_CONTEXT_X86_EXTENDED_REGISTERS = (MD_CONTEXT_X86 | 0x00000020)
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc801 context_ptr->context_flags = MD_CONTEXT_X86; in WriteContextX86()