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

  /external/google-breakpad/src/tools/linux/md2core/
minidump_memory_range.h 55 // Returns a subrange of |length| bytes at |offset| bytes of this memory
56 // range, or an empty range if the subrange is out of bounds.
59 MinidumpMemoryRange Subrange(size_t sub_offset, size_t sub_length) const {
65 // Returns a subrange that covers the offset and length specified by
66 // |location|, or an empty range if the subrange is out of bounds.
67 MinidumpMemoryRange Subrange(const MDLocationDescriptor& location) const {
68 return MinidumpMemoryRange::Subrange(location.rva, location.data_size);
minidump_memory_range_unittest.cc 45 // Test vectors for verifying Covers, GetData, and Subrange.
135 MinidumpMemoryRange subrange = range.Subrange(0, 10); local
136 EXPECT_EQ(NULL, subrange.data());
137 EXPECT_EQ(0U, subrange.length());
149 MinidumpMemoryRange subrange = range.Subrange(sub_offset, sub_length); local
154 EXPECT_EQ(kBufferPointer + sub_offset, subrange.data());
155 EXPECT_EQ(sub_length, subrange.length());
159 EXPECT_EQ(NULL, subrange.data())
177 MinidumpMemoryRange subrange = range.Subrange(location); local
    [all...]
minidump-2-core.cc 414 full_file.Subrange(rawthread->stack.memory);
419 full_file.Subrange(rawthread->thread_context));
    [all...]
  /external/google-breakpad/src/common/linux/
elf_core_dump.cc 63 return content_.Subrange(sizeof(Nhdr), header->n_namesz);
71 return content_.Subrange(AlignedSize(sizeof(Nhdr) + header->n_namesz),
84 content_.Subrange(next_offset, content_.length() - next_offset);
173 note_content = content_.Subrange(program_header->p_offset,
  /external/google-breakpad/src/common/
memory_range.h 45 // access of a subrange of the memory. Its implemementation does not
75 // Returns true if this range covers a subrange of |sub_length| bytes
87 // Returns a raw data pointer to a subrange of |sub_length| bytes at
88 // |sub_offset| bytes of this memory range, or NULL if the subrange
95 // as the subrange length and returns an |DataType| pointer for convenience.
122 // Returns a subrange of |sub_length| bytes at |sub_offset| bytes of
123 // this memory range, or an empty range if the subrange is out of bounds.
124 MemoryRange Subrange(size_t sub_offset, size_t sub_length) const {
memory_range_unittest.cc 44 // Test vectors for verifying Covers, GetData, and Subrange.
134 MemoryRange subrange = range.Subrange(0, 10); local
135 EXPECT_EQ(NULL, subrange.data());
136 EXPECT_EQ(0U, subrange.length());
148 MemoryRange subrange = range.Subrange(sub_offset, sub_length); local
153 EXPECT_EQ(kBufferPointer + sub_offset, subrange.data());
154 EXPECT_EQ(sub_length, subrange.length());
158 EXPECT_EQ(NULL, subrange.data())
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp     [all...]

Completed in 296 milliseconds