/external/google-breakpad/src/processor/ |
D | range_map-inl.h | 49 template<typename AddressType, typename EntryType> 50 bool RangeMap<AddressType, EntryType>::StoreRange(const AddressType &base, in StoreRange() 51 const AddressType &size, in StoreRange() 53 AddressType high = base + size - 1; in StoreRange() 117 template<typename AddressType, typename EntryType> 118 bool RangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange() 119 const AddressType &address, EntryType *entry, in RetrieveRange() 120 AddressType *entry_base, AddressType *entry_size) const { in RetrieveRange() 146 template<typename AddressType, typename EntryType> 147 bool RangeMap<AddressType, EntryType>::RetrieveNearestRange( in RetrieveNearestRange() [all …]
|
D | range_map.h | 52 template<typename AddressType, typename EntryType> 60 bool StoreRange(const AddressType &base, 61 const AddressType &size, 67 bool RetrieveRange(const AddressType &address, EntryType *entry, 68 AddressType *entry_base, AddressType *entry_size) const; 75 bool RetrieveNearestRange(const AddressType &address, EntryType *entry, 76 AddressType *entry_base, AddressType *entry_size) 87 AddressType *entry_base, AddressType *entry_size) 100 friend class RangeMapSerializer<AddressType, EntryType>; 104 Range(const AddressType &base, const EntryType &entry) in Range() [all …]
|
D | static_range_map.h | 49 template<typename AddressType, typename EntryType> 58 bool RetrieveRange(const AddressType &address, const EntryType *&entry, 59 AddressType *entry_base, AddressType *entry_size) const; 66 bool RetrieveNearestRange(const AddressType &address, const EntryType *&entry, 67 AddressType *entry_base, AddressType *entry_size) 78 AddressType *entry_base, AddressType *entry_size) 88 AddressType base() const { in base() 89 return *(reinterpret_cast<const AddressType*>(this)); in base() 92 return reinterpret_cast<const EntryType*>(this + sizeof(AddressType)); in entryptr() 98 typedef StaticMap<AddressType, Range> AddressToRangeMap;
|
D | static_range_map-inl.h | 44 template<typename AddressType, typename EntryType> 45 bool StaticRangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange() 46 const AddressType &address, const EntryType *&entry, in RetrieveRange() 47 AddressType *entry_base, AddressType *entry_size) const { in RetrieveRange() 75 template<typename AddressType, typename EntryType> 76 bool StaticRangeMap<AddressType, EntryType>::RetrieveNearestRange( in RetrieveNearestRange() 77 const AddressType &address, const EntryType *&entry, in RetrieveNearestRange() 78 AddressType *entry_base, AddressType *entry_size) const { in RetrieveNearestRange() 104 template<typename AddressType, typename EntryType> 105 bool StaticRangeMap<AddressType, EntryType>::RetrieveRangeAtIndex( in RetrieveRangeAtIndex() [all …]
|
D | address_map-inl.h | 47 template<typename AddressType, typename EntryType> 48 bool AddressMap<AddressType, EntryType>::Store(const AddressType &address, in Store() 62 template<typename AddressType, typename EntryType> 63 bool AddressMap<AddressType, EntryType>::Retrieve( in Retrieve() 64 const AddressType &address, in Retrieve() 65 EntryType *entry, AddressType *entry_address) const { in Retrieve() 86 template<typename AddressType, typename EntryType> 87 void AddressMap<AddressType, EntryType>::Clear() { in Clear()
|
D | contained_range_map-inl.h | 49 template<typename AddressType, typename EntryType> 50 ContainedRangeMap<AddressType, EntryType>::~ContainedRangeMap() { in ~ContainedRangeMap() 56 template<typename AddressType, typename EntryType> 57 bool ContainedRangeMap<AddressType, EntryType>::StoreRange( in StoreRange() 58 const AddressType &base, const AddressType &size, const EntryType &entry) { in StoreRange() 59 AddressType high = base + size - 1; in StoreRange() 150 template<typename AddressType, typename EntryType> 151 bool ContainedRangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange() 152 const AddressType &address, EntryType *entry) const { in RetrieveRange() 181 template<typename AddressType, typename EntryType> [all …]
|
D | range_map_unittest.cc | 70 typedef int AddressType; typedef 71 typedef RangeMap< AddressType, linked_ptr<CountedObject> > TestMap; 78 AddressType address; 81 AddressType size; 141 AddressType low_offset = -1; in RetrieveTest() 142 AddressType high_offset = 1; in RetrieveTest() 150 for (AddressType offset = low_offset; offset <= high_offset; ++offset) { in RetrieveTest() 151 AddressType address = in RetrieveTest() 167 AddressType retrieved_base = AddressType(); in RetrieveTest() 168 AddressType retrieved_size = AddressType(); in RetrieveTest() [all …]
|
D | contained_range_map.h | 72 template<typename AddressType, typename EntryType> 89 bool StoreRange(const AddressType &base, 90 const AddressType &size, 98 bool RetrieveRange(const AddressType &address, EntryType *entry) const; 108 friend class ContainedRangeMapSerializer<AddressType, EntryType>; 113 typedef std::map<AddressType, ContainedRangeMap *> AddressToRangeMap; 121 ContainedRangeMap(const AddressType &base, const EntryType &entry, in ContainedRangeMap() 132 const AddressType base_;
|
D | static_range_map_unittest.cc | 45 typedef int AddressType; typedef 47 typedef google_breakpad::StaticRangeMap< AddressType, EntryType > TestMap; 48 typedef google_breakpad::RangeMap< AddressType, EntryType > RMap; 54 AddressType address; 57 AddressType size; 196 RangeMapSerializer<AddressType, EntryType> serializer_; 221 AddressType low_offset = -1; in RetrieveTest() 222 AddressType high_offset = 1; in RetrieveTest() 230 for (AddressType offset = low_offset; offset <= high_offset; ++offset) { in RetrieveTest() 231 AddressType address = in RetrieveTest() [all …]
|
D | address_map.h | 48 template<typename AddressType, typename EntryType> 56 bool Store(const AddressType &address, const EntryType &entry); 63 bool Retrieve(const AddressType &address, 64 EntryType *entry, AddressType *entry_address) const; 71 friend class AddressMapSerializer<AddressType, EntryType>; 75 typedef std::map<AddressType, EntryType> AddressToEntryMap;
|
D | static_contained_range_map-inl.h | 45 template<typename AddressType, typename EntryType> 46 StaticContainedRangeMap<AddressType, EntryType>::StaticContainedRangeMap( in StaticContainedRangeMap() 48 : base_(*(reinterpret_cast<const AddressType*>(base))), in StaticContainedRangeMap() 58 template<typename AddressType, typename EntryType> 59 bool StaticContainedRangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange() 60 const AddressType &address, const EntryType *&entry) const { in RetrieveRange()
|
D | static_address_map-inl.h | 45 template<typename AddressType, typename EntryType> 46 bool StaticAddressMap<AddressType, EntryType>::Retrieve( in Retrieve() 47 const AddressType &address, in Retrieve() 48 const EntryType *&entry, AddressType *entry_address) const { in Retrieve()
|
D | static_address_map.h | 51 template<typename AddressType, typename EntryType> 62 bool Retrieve(const AddressType &address, 63 const EntryType *&entry, AddressType *entry_address) const; 69 typedef StaticMap<AddressType, EntryType> AddressToEntryMap;
|
D | static_contained_range_map.h | 49 template<typename AddressType, typename EntryType> 60 bool RetrieveRange(const AddressType &address, const EntryType *&entry) const; 68 StaticMap<AddressType, StaticContainedRangeMap> AddressToRangeMap; 78 AddressType base_;
|
D | address_map_unittest.cc | 73 typedef int AddressType; typedef 74 typedef AddressMap< AddressType, linked_ptr<CountedObject> > TestMap; 81 AddressType address; in DoAddressMapTest() 130 for (AddressType key = 0; key < 5; ++key) { in DoAddressMapTest() 146 const AddressType address_verify[] = { 0, 0, 0, 0, 0, // unused in DoAddressMapTest() 153 for (AddressType key = 5; key < 30; ++key) { in DoAddressMapTest()
|
D | basic_code_modules.h | 49 template<typename AddressType, typename EntryType> class RangeMap;
|
/external/webrtc/webrtc/test/channel_transport/ |
D | udp_socket2_win.cc | 988 if(addresses->Address[i].AddressType != NDIS_PROTOCOL_ID_TCP_IP) in SetTrafficControl() 1204 filter.AddressType = NDIS_PROTOCOL_ID_TCP_IP; in SetTrafficControl()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | minidump.h | 107 template<typename AddressType, typename EntryType> class RangeMap;
|