HomeSort by relevance Sort by last modified time
    Searched full:context_flags (Results 1 - 25 of 31) sorted by null

1 2

  /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_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...]
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...]
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;
synth_minidump_unittest_data.h 12 0xded5d71b, // context_flags
247 // context_flags
synth_minidump.h 55 // x86_context1.context_flags = MD_CONTEXT_X86;
  /external/google-breakpad/src/google_breakpad/common/
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:__anon12856
149 /* For (MDRawContextPPC).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:__anon12857
115 /* For (MDRawContextPPC).context_flags. These values indicate the type of
minidump_cpu_arm.h 95 uint32_t context_flags; member in struct:__anon12847
130 /* For (MDRawContextARM).context_flags. These values indicate the type of
minidump_cpu_arm64.h 89 uint64_t context_flags; member in struct:__anon12849
126 /* For (MDRawContextARM64).context_flags. These values indicate the type of
minidump_cpu_mips.h 110 uint32_t context_flags; member in struct:__anon12853
157 /* For (MDRawContextMIPS).context_flags. These values indicate the type of
minidump_cpu_sparc.h 97 uint32_t context_flags; member in struct:__anon12859
141 /* For (MDRawContextSPARC).context_flags. These values indicate the type of
minidump_cpu_x86.h 100 uint32_t context_flags; member in struct:__anon12861
143 /* For (MDRawContextX86).context_flags. These values indicate the type of
minidump_cpu_amd64.h 115 uint32_t context_flags; member in struct:__anon12843
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:__anon12872
    [all...]
  /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/ios/handler/
ios_exception_minidump_generator.mm 99 context_ptr->context_flags = MD_CONTEXT_ARM_FULL;
117 context_ptr->context_flags = MD_CONTEXT_ARM64_FULL;
  /external/google-breakpad/src/google_breakpad/processor/
dump_context.h 77 void SetContextFlags(uint32_t context_flags);
  /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/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11_context.h 104 unsigned context_flags; member in struct:GalliumD3D11DeviceContext
114 GalliumD3D11DeviceContext(GalliumD3D11Screen* device, pipe_context* pipe, bool owns_pipe, unsigned context_flags = 0)
115 : GalliumD3D11DeviceChild<ID3D11DeviceContext>(device), pipe(pipe), owns_pipe(owns_pipe), context_flags(context_flags)
129 : GalliumD3D10ScreenImpl<threadsafe>(screen, pipe, owns_pipe, creation_flags, adapter), pipe(pipe), owns_pipe(owns_pipe), context_flags(0)
296 return context_flags;
    [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/google-breakpad/src/processor/testdata/
minidump2.dump.out 91 context_flags = 0x1003f
142 context_flags = 0x1003f
    [all...]
  /external/deqp/scripts/opengl/
gen_str_util.py 765 "MAX_DEBUG_LOGGED_MESSAGES", "MAX_DEBUG_GROUP_STACK_DEPTH", "MAX_LABEL_LENGTH", "CONTEXT_FLAGS", "DEBUG_LOGGED_MESSAGES",

Completed in 262 milliseconds

1 2