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

  /external/google-breakpad/src/processor/
static_contained_range_map-inl.h 59 bool StaticContainedRangeMap<AddressType, EntryType>::RetrieveRange(
84 if (!child_map.RetrieveRange(address, entry))
static_contained_range_map_unittest.cc 49 // RetrieveRange on an address.
248 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test));
249 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test));
250 ASSERT_FALSE(test_map->RetrieveRange(10, entry_test));
268 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test));
269 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test));
270 ASSERT_TRUE(test_map->RetrieveRange(10, entry_test));
272 ASSERT_TRUE(test_map->RetrieveRange(13, entry_test));
279 // Now, do the RetrieveRange tests. This further validates that the
292 if (test_map_.RetrieveRange(address, entryptr)
    [all...]
static_contained_range_map.h 35 // StaticContainedRangeMap provides same RetrieveRange(...) interfaces as
60 bool RetrieveRange(const AddressType &address, const EntryType *&entry) const;
contained_range_map.h 43 // Retrieval (via RetrieveRange) always returns the most specific (smallest)
98 bool RetrieveRange(const AddressType &address, EntryType *entry) const;
static_range_map.h 58 bool RetrieveRange(const AddressType &address, const EntryType *&entry,
static_range_map-inl.h 45 bool StaticRangeMap<AddressType, EntryType>::RetrieveRange(
79 // If address is within a range, RetrieveRange can handle it.
80 if (RetrieveRange(address, entry, entry_base, entry_size))
contained_range_map-inl.h 151 bool ContainedRangeMap<AddressType, EntryType>::RetrieveRange(
153 BPLOG_IF(ERROR, !entry) << "ContainedRangeMap::RetrieveRange requires "
174 if (!iterator->second->RetrieveRange(address, entry))
basic_code_modules.cc 92 if (!map_->RetrieveRange(address, &module, NULL, NULL)) {
fast_source_line_resolver.cc 68 // RetrieveNearestRange instead of RetrieveRange so that, if there
91 if (func->lines.RetrieveRange(address, line_ptr, &line_base, NULL)) {
201 .RetrieveRange(address, frame_info_ptr))
203 .RetrieveRange(address, frame_info_ptr))) {
210 // stack. Use RetrieveNearestRange instead of RetrieveRange, so that
251 if (!cfi_initial_rules_.RetrieveRange(address, initial_rules,
range_map.h 67 bool RetrieveRange(const AddressType &address, EntryType *entry,
range_map-inl.h 118 bool RangeMap<AddressType, EntryType>::RetrieveRange(
121 BPLOG_IF(ERROR, !entry) << "RangeMap::RetrieveRange requires |entry|";
153 // If address is within a range, RetrieveRange can handle it.
154 if (RetrieveRange(address, entry, entry_base, entry_size))
basic_source_line_resolver.cc 194 // RetrieveNearestRange instead of RetrieveRange so that, if there
212 if (func->lines.RetrieveRange(address, &line, &line_base, NULL)) {
241 .RetrieveRange(address, &frame_info))
243 .RetrieveRange(address, &frame_info))) {
250 // stack. Use RetrieveNearestRange instead of RetrieveRange, so that
287 if (!cfi_initial_rules_.RetrieveRange(address, &initial_rules,
contained_range_map_unittest.cc 111 // RetrieveRange on an address.
216 // Now, do the RetrieveRange tests. This further validates that the
228 if (!crm.RetrieveRange(address, &value))
range_map_unittest.cc 124 // RetrieveTest uses the data in RangeTest and calls RetrieveRange on the
169 bool retrieved = range_map->RetrieveRange(address, &object,
177 "RetrieveRange id %d, side %d, offset %d, "
193 "RetrieveRange id %d, side %d, offset %d, "
427 // A light round of testing to verify that RetrieveRange does the right
432 { INT_MIN, 0, 100, false }, // makes RetrieveRange check low end
434 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end
442 { INT_MIN, 0, 112, false }, // makes RetrieveRange check low end
443 { INT_MAX, 0, 113, false } // makes RetrieveRange check high end
471 // the RangeMap with data for the RetrieveRange test
    [all...]
static_range_map_unittest.cc 136 // A light round of testing to verify that RetrieveRange does the right
141 { INT_MIN, 0, 100, false }, // makes RetrieveRange check low end
143 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end
151 { INT_MIN, 0, 112, false }, // makes RetrieveRange check low end
152 { INT_MAX, 0, 113, false } // makes RetrieveRange check high end
178 // RetrieveTest uses the data in RangeTest and calls RetrieveRange on the
249 bool retrieved = range_map->RetrieveRange(address, id,
255 << "RetrieveRange id " << range_test->id
262 << "RetrieveRange id " << range_test->id
265 << "RetrieveRange id " << range_test->i
    [all...]
minidump.cc     [all...]

Completed in 894 milliseconds