HomeSort by relevance Sort by last modified time
    Searched refs:context_flags (Results 1 - 24 of 24) sorted by null

  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_arm.h 95 uint32_t context_flags; member in struct:__anon20816
130 /* For (MDRawContextARM).context_flags. These values indicate the type of
minidump_cpu_arm64.h 89 uint64_t context_flags; member in struct:__anon20818
126 /* For (MDRawContextARM64).context_flags. These values indicate the type of
minidump_cpu_ppc64.h 90 /* context_flags is not present in ppc_thread_state, but it aids
93 uint64_t context_flags; member in struct:__anon20826
115 /* For (MDRawContextPPC).context_flags. These values indicate the type of
minidump_cpu_sparc.h 97 uint32_t context_flags; member in struct:__anon20828
141 /* For (MDRawContextSPARC).context_flags. These values indicate the type of
minidump_cpu_ppc.h 117 /* context_flags is not present in ppc_thread_state, but it aids
120 uint32_t context_flags; member in struct:__anon20825
149 /* For (MDRawContextPPC).context_flags. These values indicate the type of
minidump_cpu_mips.h 110 uint32_t context_flags; member in struct:__anon20822
157 /* For (MDRawContextMIPS).context_flags. These values indicate the type of
minidump_cpu_x86.h 100 uint32_t context_flags; member in struct:__anon20830
143 /* For (MDRawContextX86).context_flags. These values indicate the type of
minidump_cpu_amd64.h 115 uint32_t context_flags; member in struct:__anon20812
203 /* For (MDRawContextAMD64).context_flags. These values indicate the type of
minidump_format.h 94 * (MDRawContext*).context_flags. These aren't used by Breakpad, but are
110 * can be determined by examining the context_flags field. */
112 uint32_t context_flags; member in struct:__anon20841
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
dump_context.h 77 void SetContextFlags(uint32_t context_flags);
  /external/google-breakpad/src/processor/
dump_context.cc 188 void DumpContext::SetContextFlags(uint32_t context_flags) {
189 context_flags_ = context_flags;
279 printf(" context_flags = 0x%x\n",
280 context_x86->context_flags);
342 printf(" context_flags = 0x%x\n",
343 context_ppc->context_flags);
381 printf(" context_flags = 0x%" PRIx64 "\n",
382 context_ppc64->context_flags);
436 printf(" context_flags = 0x%x\n",
437 context_amd64->context_flags);
    [all...]
synth_minidump.cc 134 assert(((context.context_flags & MD_CONTEXT_CPU_MASK) == 0) ||
135 (context.context_flags & MD_CONTEXT_X86));
138 D32(context.context_flags);
182 assert((context.context_flags & MD_CONTEXT_ARM) ||
183 (context.context_flags & MD_CONTEXT_ARM_OLD));
186 D32(context.context_flags);
201 assert(context.context_flags & MD_CONTEXT_MIPS);
202 D32(context.context_flags);
minidump.cc 445 // For some reason, the AMD64 Context doesn't have context_flags
458 Swap(&context_amd64->context_flags);
460 uint32_t cpu_type = context_amd64->context_flags & MD_CONTEXT_CPU_MASK;
463 context_amd64->context_flags |= cpu_type;
498 // context_flags is already swapped
546 SetContextFlags(context_amd64->context_flags);
550 // |context_flags| of MDRawContextPPC64 is 64 bits, but other MDRawContext
551 // in the else case have 32 bits |context_flags|, so special case it here.
552 uint64_t context_flags; local
553 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags)))
646 uint64_t context_flags; local
729 uint32_t context_flags; local
    [all...]
minidump_unittest.cc 217 raw_context.context_flags = MD_CONTEXT_X86_INTEGER | MD_CONTEXT_X86_CONTROL;
285 (md_raw_context->context_flags
308 raw_context.context_flags = MD_CONTEXT_X86_INTEGER | MD_CONTEXT_X86_CONTROL;
488 raw_context0.context_flags = MD_CONTEXT_X86_INTEGER;
500 raw_context1.context_flags = MD_CONTEXT_X86_INTEGER;
512 raw_context2.context_flags = MD_CONTEXT_X86_INTEGER;
524 raw_context3.context_flags = MD_CONTEXT_X86_INTEGER;
536 raw_context4.context_flags = MD_CONTEXT_X86_INTEGER;
691 raw_context.context_flags = MD_CONTEXT_X86_INTEGER | MD_CONTEXT_X86_CONTROL;
744 (md_raw_context->context_flags
    [all...]
synth_minidump_unittest.cc 127 assert(x86_raw_context.context_flags & MD_CONTEXT_X86);
138 assert(arm_raw_context.context_flags & MD_CONTEXT_ARM);
150 raw.context_flags = MD_CONTEXT_AMD64;
152 "context\\.context_flags & (0x[0-9a-f]+|MD_CONTEXT_X86)");
158 raw.context_flags = MD_CONTEXT_X86;
minidump_processor_unittest.cc 524 no_memory_thread_raw_context.context_flags = MD_CONTEXT_X86_FULL;
  /external/google-breakpad/src/client/linux/dump_writer_common/
thread_info.cc 66 out->context_flags = MD_CONTEXT_X86_ALL;
129 out->context_flags = MD_CONTEXT_AMD64_FULL |
194 out->context_flags = MD_CONTEXT_ARM_FULL;
216 out->context_flags = MD_CONTEXT_ARM64_FULL;
237 out->context_flags = MD_CONTEXT_MIPS_FULL;
ucontext_reader.cc 55 out->context_flags = MD_CONTEXT_X86_FULL |
103 out->context_flags = MD_CONTEXT_AMD64_FULL;
157 out->context_flags = MD_CONTEXT_ARM_FULL;
197 out->context_flags = MD_CONTEXT_ARM64_FULL;
222 out->context_flags = MD_CONTEXT_MIPS_FULL;
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 479 context_ptr->context_flags = MD_CONTEXT_ARM_FULL;
537 context_ptr->context_flags = MD_CONTEXT_ARM64_FULL;
628 context_ptr->context_flags = MD_CONTEXT_PPC_BASE;
694 context_ptr->context_flags = MD_CONTEXT_PPC_BASE;
801 context_ptr->context_flags = MD_CONTEXT_X86;
841 context_ptr->context_flags = MD_CONTEXT_AMD64;
    [all...]
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 157 context->context_flags = MD_CONTEXT_SPARC_FULL;
183 context->context_flags = MD_CONTEXT_SPARC_FULL;
203 context->context_flags = MD_CONTEXT_X86_FULL;
  /external/mesa3d/src/gallium/drivers/radeon/
r600_pipe_common.h 732 unsigned context_flags);
    [all...]
r600_pipe_common.c 555 unsigned context_flags)
585 (context_flags & PIPE_CONTEXT_COMPUTE_ONLY))
    [all...]
  /device/generic/goldfish-opengl/system/egl/
egl.cpp 1437 EGLint context_flags = 0; local
    [all...]
  /external/v8/tools/
grokdump.py 275 return lambda o: [None, type][int((o.context_flags & flag) != 0)]
278 ("context_flags", ctypes.c_uint32),
327 ("context_flags", ctypes.c_uint32),
362 ("context_flags", ctypes.c_uint64),
417 ("context_flags", ctypes.c_uint32),
    [all...]

Completed in 466 milliseconds