Searched refs:AddressFilter (Results 1 – 2 of 2) sorted by relevance
88 struct AddressFilter struct96 AddressFilter(AddressFilterAction action, uint32_t from, uint32_t to, unsigned priority=0) argument105 int compare(const AddressFilter & other) const; argument109 inline bool operator < (const AddressFilter & other) const { return compare(other) == -1; }110 inline bool operator > (const AddressFilter & other) const { return compare(other) == 1; }111 inline bool operator == (const AddressFilter & other) const { return compare(other) == 0; }112 inline bool operator <= (const AddressFilter & other) const { return compare(other) != 1; }113 inline bool operator >= (const AddressFilter & other) const { return compare(other) != -1; }118 typedef std::list<AddressFilter> AddressFilterList;129 …address_filter_exception(bool isError, std::string & imageName, const AddressFilter & matchingFilt… in address_filter_exception()[all …]
129 void StExecutableImage::addAddressFilter(const AddressFilter & filter) in addAddressFilter()155 const AddressFilter & filter = *fit; in applyAddressFilters()205 void StExecutableImage::cropRegionToFilter(MemoryRegion & region, const AddressFilter & filter) in cropRegionToFilter()408 bool StExecutableImage::AddressFilter::matchesMemoryRegion(const MemoryRegion & region) const in matchesMemoryRegion()422 int StExecutableImage::AddressFilter::compare(const AddressFilter & other) const in compare()