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

  /external/google-breakpad/src/common/linux/
memory_mapped_file.h 56 // content() as a MemoryRange object or via data(), and returns true on
66 // Returns a MemoryRange object that covers the memory for the mapped
67 // file. The MemoryRange object is empty if no file is mapped.
68 const MemoryRange& content() const { return content_; }
79 // Mapped file content as a MemoryRange object.
80 MemoryRange content_;
elf_core_dump.h 69 explicit Note(const MemoryRange& content);
84 MemoryRange GetName() const;
88 MemoryRange GetDescription() const;
100 MemoryRange content_;
106 explicit ElfCoreDump(const MemoryRange& content);
109 void SetContent(const MemoryRange& content);
143 MemoryRange content_;
elf_core_dump.cc 44 ElfCoreDump::Note::Note(const MemoryRange& content) : content_(content) {}
60 MemoryRange ElfCoreDump::Note::GetName() const {
65 return MemoryRange();
68 MemoryRange ElfCoreDump::Note::GetDescription() const {
74 return MemoryRange();
78 MemoryRange next_content;
100 ElfCoreDump::ElfCoreDump(const MemoryRange& content)
104 void ElfCoreDump::SetContent(const MemoryRange& content) {
170 MemoryRange note_content;
elf_core_dump_unittest.cc 48 using google_breakpad::MemoryRange;
199 MemoryRange name = note.GetName();
200 MemoryRange description = note.GetDescription();
  /external/google-breakpad/src/common/
memory_range.h 30 // memory_range.h: Define the google_breakpad::MemoryRange class, which
48 class MemoryRange {
50 MemoryRange() : data_(NULL), length_(0) {}
52 MemoryRange(const void* data, size_t length) {
124 MemoryRange Subrange(size_t sub_offset, size_t sub_length) const {
126 MemoryRange(data_ + sub_offset, sub_length) : MemoryRange();
memory_range_unittest.cc 30 // memory_range_unittest.cc: Unit tests for google_breakpad::MemoryRange.
35 using google_breakpad::MemoryRange;
95 MemoryRange range;
101 MemoryRange range(kBuffer, kBufferSize);
107 MemoryRange range;
122 MemoryRange range;
133 MemoryRange range;
134 MemoryRange subrange = range.Subrange(0, 10);
140 MemoryRange range(kBuffer, kBufferSize);
148 MemoryRange subrange = range.Subrange(sub_offset, sub_length)
    [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump_memory_range.h 32 // on top of google_breakpad::MemoryRange. See common/memory_range.h for
33 // more details on MemoryRange.
45 // A derived class of MemoryRange with added methods for handling minidump
48 class MinidumpMemoryRange : public MemoryRange {
53 : MemoryRange(data, length) {}
58 // an instance of MinidumpMemoryRange instead of MemoryRange.
  /system/core/libunwindstack/tests/
MemoryRangeTest.cpp 37 MemoryRange range(memory, 9001, 9001 + src.size());
52 MemoryRange range(memory, 1000, 2024);
72 std::unique_ptr<MemoryRange> overflow(new MemoryRange(new MemoryFakeAlwaysReadZero, 100, 200));
  /system/core/libunwindstack/include/unwindstack/
Memory.h 126 class MemoryRange : public Memory {
128 MemoryRange(Memory* memory, uint64_t begin, uint64_t end);
129 virtual ~MemoryRange() { delete memory_; }
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryMappingTests.cpp 441 struct MemoryRange
443 MemoryRange (VkDeviceSize offset_ = ~(VkDeviceSize)0, VkDeviceSize size_ = ~(VkDeviceSize)0)
464 MemoryRange mapping;
465 vector<MemoryRange> flushMappings;
466 vector<MemoryRange> invalidateMappings;
755 MemoryMapping (const MemoryRange& range,
763 const MemoryRange& getRange (void) const { return m_range; }
766 MemoryRange m_range;
771 MemoryMapping::MemoryMapping (const MemoryRange& range,
940 m_mapping = new MemoryMapping(MemoryRange(offset, size), ptr, m_referenceMemory)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/
MemoryProfileInfo.c 452 @param[in] MemoryRange Pointer to memory profile memory range.
459 IN MEMORY_PROFILE_MEMORY_RANGE *MemoryRange
465 if (MemoryRange->Header.Signature != MEMORY_PROFILE_MEMORY_RANGE_SIGNATURE) {
469 Print (L" Signature - 0x%08x\n", MemoryRange->Header.Signature);
470 Print (L" Length - 0x%04x\n", MemoryRange->Header.Length);
471 Print (L" Revision - 0x%04x\n", MemoryRange->Header.Revision);
472 Print (L" MemoryRangeCount - 0x%08x\n", MemoryRange->MemoryRangeCount);
474 Descriptor = (MEMORY_PROFILE_DESCRIPTOR *) ((UINTN) MemoryRange + MemoryRange->Header.Length);
475 for (DescriptorIndex = 0; DescriptorIndex < MemoryRange->MemoryRangeCount; DescriptorIndex++) {
    [all...]
  /system/core/libunwindstack/
MapInfo.cpp 75 return new MemoryRange(memory, start, end);
Memory.cpp 252 MemoryRange::MemoryRange(Memory* memory, uint64_t begin, uint64_t end)
257 bool MemoryRange::Read(uint64_t addr, void* dst, size_t size) {
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper.cc 149 MemoryRange name = note.GetName();
150 MemoryRange description = note.GetDescription();
  /external/valgrind/coregrind/m_debuginfo/
readexidx.c 147 /*--- MemoryRange ---*/
150 typedef struct { Addr start; SizeT len; } MemoryRange;
154 static Bool MemoryRange__init ( /*OUT*/MemoryRange* mr,
168 static Bool MemoryRange__covers ( MemoryRange* mr,
226 ExExtractResult ExtabEntryExtract ( MemoryRange* mr_exidx,
227 MemoryRange* mr_extab,
233 MemoryRange mr_out;
422 MemoryRange mr_in;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
SmramProfileRecord.c     [all...]
  /device/google/dragon/crash_collector/
coredump_writer.cc 274 google_breakpad::MemoryRange(note_buf.data(), note_buf.size()));
366 google_breakpad::MemoryRange(note_buf.data(), note_buf.size()));

Completed in 1798 milliseconds