Searched refs:RetrieveRange (Results 1 - 16 of 16) sorted by relevance

/external/google-breakpad/src/processor/
H A Dstatic_contained_range_map-inl.h59 bool StaticContainedRangeMap<AddressType, EntryType>::RetrieveRange( function in class:google_breakpad::StaticContainedRangeMap
84 if (!child_map.RetrieveRange(address, entry))
H A Dstatic_contained_range_map_unittest.cc49 // 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(addres
[all...]
H A Dstatic_contained_range_map.h35 // StaticContainedRangeMap provides same RetrieveRange(...) interfaces as
60 bool RetrieveRange(const AddressType &address, const EntryType *&entry) const;
H A Dstatic_range_map.h58 bool RetrieveRange(const AddressType &address, const EntryType *&entry,
H A Dstatic_range_map-inl.h45 bool StaticRangeMap<AddressType, EntryType>::RetrieveRange( function in class:google_breakpad::StaticRangeMap
79 // If address is within a range, RetrieveRange can handle it.
80 if (RetrieveRange(address, entry, entry_base, entry_size))
H A Dcontained_range_map-inl.h151 bool ContainedRangeMap<AddressType, EntryType>::RetrieveRange( function in class:google_breakpad::ContainedRangeMap
153 BPLOG_IF(ERROR, !entry) << "ContainedRangeMap::RetrieveRange requires "
174 if (!iterator->second->RetrieveRange(address, entry))
H A Dbasic_code_modules.cc92 if (!map_->RetrieveRange(address, &module, NULL, NULL)) {
H A Dcontained_range_map.h43 // Retrieval (via RetrieveRange) always returns the most specific (smallest)
98 bool RetrieveRange(const AddressType &address, EntryType *entry) const;
H A Dfast_source_line_resolver.cc68 // 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,
H A Drange_map.h67 bool RetrieveRange(const AddressType &address, EntryType *entry,
H A Drange_map-inl.h118 bool RangeMap<AddressType, EntryType>::RetrieveRange( function in class:google_breakpad::RangeMap
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))
H A Dbasic_source_line_resolver.cc194 // 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,
H A Dcontained_range_map_unittest.cc111 // RetrieveRange on an address.
216 // Now, do the RetrieveRange tests. This further validates that the
228 if (!crm.RetrieveRange(address, &value))
H A Drange_map_unittest.cc124 // 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 tes
[all...]
H A Dstatic_range_map_unittest.cc136 // 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 i
[all...]
H A Dminidump.cc2591 if (!range_map_->RetrieveRange(address, &module_index, NULL, NULL)) {
2842 if (!range_map_->RetrieveRange(address, &region_index, NULL, NULL)) {
3946 if (!range_map_->RetrieveRange(address, &info_index, NULL, NULL)) {

Completed in 504 milliseconds