Home | History | Annotate | Download | only in processor

Lines Matching refs:memory_info_

3714       memory_info_() {
3720 memory_info_.protection & MD_MEMORY_PROTECTION_ACCESS_MASK;
3729 memory_info_.protection & MD_MEMORY_PROTECTION_ACCESS_MASK;
3740 if (!minidump_->ReadBytes(&memory_info_, sizeof(memory_info_))) {
3746 Swap(&memory_info_.base_address);
3747 Swap(&memory_info_.allocation_base);
3748 Swap(&memory_info_.allocation_protection);
3749 Swap(&memory_info_.region_size);
3750 Swap(&memory_info_.state);
3751 Swap(&memory_info_.protection);
3752 Swap(&memory_info_.type);
3756 if (memory_info_.region_size == 0 ||
3757 memory_info_.region_size > numeric_limits<uint64_t>::max() -
3758 memory_info_.base_address) {
3760 HexString(memory_info_.base_address) << "+" <<
3761 HexString(memory_info_.region_size);
3778 memory_info_.base_address);
3780 memory_info_.allocation_base);
3782 memory_info_.allocation_protection);
3783 printf(" region_size = 0x%" PRIx64 "\n", memory_info_.region_size);
3784 printf(" state = 0x%x\n", memory_info_.state);
3785 printf(" protection = 0x%x\n", memory_info_.protection);
3786 printf(" type = 0x%x\n", memory_info_.type);