Home
last modified time | relevance | path

Searched refs:memory_info_ (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/process/
Dprocess_metrics.cc63 GetSystemMemoryInfo(&system_metrics.memory_info_); in Sample()
79 std::unique_ptr<DictionaryValue> meminfo = memory_info_.ToValue(); in ToValue()
Dprocess_metrics.h495 SystemMemoryInfoKB memory_info_; variable
/external/google-breakpad/src/processor/
Dminidump.cc3714 memory_info_() { in MinidumpMemoryInfo()
3720 memory_info_.protection & MD_MEMORY_PROTECTION_ACCESS_MASK; in IsExecutable()
3729 memory_info_.protection & MD_MEMORY_PROTECTION_ACCESS_MASK; in IsWritable()
3740 if (!minidump_->ReadBytes(&memory_info_, sizeof(memory_info_))) { in Read()
3746 Swap(&memory_info_.base_address); in Read()
3747 Swap(&memory_info_.allocation_base); in Read()
3748 Swap(&memory_info_.allocation_protection); in Read()
3749 Swap(&memory_info_.region_size); in Read()
3750 Swap(&memory_info_.state); in Read()
3751 Swap(&memory_info_.protection); in Read()
[all …]
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h790 const MDRawMemoryInfo* info() const { return valid_ ? &memory_info_ : NULL; } in info()
793 uint64_t GetBase() const { return valid_ ? memory_info_.base_address : 0; } in GetBase()
796 uint64_t GetSize() const { return valid_ ? memory_info_.region_size : 0; } in GetSize()
818 MDRawMemoryInfo memory_info_; variable