/external/google-breakpad/src/processor/ |
H A D | static_contained_range_map-inl.h | 59 bool StaticContainedRangeMap<AddressType, EntryType>::RetrieveRange( function in class:google_breakpad::StaticContainedRangeMap 84 if (!child_map.RetrieveRange(address, entry))
|
H A D | 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(addres [all...] |
H A D | static_contained_range_map.h | 35 // StaticContainedRangeMap provides same RetrieveRange(...) interfaces as 60 bool RetrieveRange(const AddressType &address, const EntryType *&entry) const;
|
H A D | static_range_map.h | 58 bool RetrieveRange(const AddressType &address, const EntryType *&entry,
|
H A D | static_range_map-inl.h | 45 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 D | contained_range_map-inl.h | 151 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 D | basic_code_modules.cc | 92 if (!map_->RetrieveRange(address, &module, NULL, NULL)) {
|
H A D | contained_range_map.h | 43 // Retrieval (via RetrieveRange) always returns the most specific (smallest) 98 bool RetrieveRange(const AddressType &address, EntryType *entry) const;
|
H A D | 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,
|
H A D | range_map.h | 67 bool RetrieveRange(const AddressType &address, EntryType *entry,
|
H A D | range_map-inl.h | 118 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 D | 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,
|
H A D | 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))
|
H A D | 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 tes [all...] |
H A D | 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 i [all...] |
H A D | minidump.cc | 2591 if (!range_map_->RetrieveRange(address, &module_index, NULL, NULL)) { 2842 if (!range_map_->RetrieveRange(address, ®ion_index, NULL, NULL)) { 3946 if (!range_map_->RetrieveRange(address, &info_index, NULL, NULL)) {
|