Lines Matching refs:context_flags
458 Swap(&context_amd64->context_flags); in Read()
460 uint32_t cpu_type = context_amd64->context_flags & MD_CONTEXT_CPU_MASK; in Read()
463 context_amd64->context_flags |= cpu_type; in Read()
546 SetContextFlags(context_amd64->context_flags); in Read()
552 uint64_t context_flags; in Read() local
553 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { in Read()
558 Swap(&context_flags); in Read()
560 uint32_t cpu_type = context_flags & MD_CONTEXT_CPU_MASK; in Read()
565 context_ppc64->context_flags |= cpu_type; in Read()
582 context_ppc64->context_flags = context_flags; in Read()
584 size_t flags_size = sizeof(context_ppc64->context_flags); in Read()
632 SetContextFlags(static_cast<uint32_t>(context_ppc64->context_flags)); in Read()
637 context_ppc64->context_flags) { in Read()
646 uint64_t context_flags; in Read() local
650 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { in Read()
655 Swap(&context_flags); in Read()
659 uint32_t cpu_type = context_flags & MD_CONTEXT_CPU_MASK; in Read()
662 context_arm64->context_flags |= cpu_type; in Read()
679 context_arm64->context_flags = context_flags; in Read()
681 size_t flags_size = sizeof(context_arm64->context_flags); in Read()
717 SetContextFlags(static_cast<uint32_t>(context_arm64->context_flags)); in Read()
722 context_arm64->context_flags) { in Read()
729 uint32_t context_flags; in Read() local
730 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { in Read()
735 Swap(&context_flags); in Read()
737 uint32_t cpu_type = context_flags & MD_CONTEXT_CPU_MASK; in Read()
743 if (context_flags & MD_CONTEXT_ARM_OLD) { in Read()
744 context_flags |= MD_CONTEXT_ARM; in Read()
745 context_flags &= ~MD_CONTEXT_ARM_OLD; in Read()
752 context_flags |= cpu_type; in Read()
776 context_x86->context_flags = context_flags; in Read()
778 size_t flags_size = sizeof(context_x86->context_flags); in Read()
849 context_ppc->context_flags = context_flags; in Read()
851 size_t flags_size = sizeof(context_ppc->context_flags); in Read()
925 context_sparc->context_flags = context_flags; in Read()
927 size_t flags_size = sizeof(context_sparc->context_flags); in Read()
981 context_arm->context_flags = context_flags; in Read()
983 size_t flags_size = sizeof(context_arm->context_flags); in Read()
1038 context_mips->context_flags = context_flags; in Read()
1040 size_t flags_size = sizeof(context_mips->context_flags); in Read()
1098 SetContextFlags(context_flags); in Read()