OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MemoryRange
(Results
1 - 15
of
15
) 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
42
MemoryRange
range(memory_, 9001, 9001 + src.size());
56
MemoryRange
range(memory_, 1000, 2024);
75
MemoryRange
range(memory_, 0, 5);
85
MemoryRange
range(memory_, 30, 30 + name.size() + 1);
96
MemoryRange
range(memory_, 10, 10 + name.size());
/system/core/libunwindstack/
Memory.h
118
class
MemoryRange
: public Memory {
120
MemoryRange
(Memory* memory, uint64_t begin, uint64_t end)
122
virtual ~
MemoryRange
() { delete memory_; }
/external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryMappingTests.cpp
308
struct
MemoryRange
310
MemoryRange
(VkDeviceSize offset_ = ~(VkDeviceSize)0, VkDeviceSize size_ = ~(VkDeviceSize)0)
330
MemoryRange
mapping;
331
vector<
MemoryRange
> flushMappings;
332
vector<
MemoryRange
> invalidateMappings;
563
MemoryMapping (const
MemoryRange
& range,
571
const
MemoryRange
& getRange (void) const { return m_range; }
574
MemoryRange
m_range;
579
MemoryMapping::MemoryMapping (const
MemoryRange
& range,
748
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
...]
/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 338 milliseconds