Home
last modified time | relevance | path

Searched refs:AddressFilter (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/common/
H A DStExecutableImage.h88 struct AddressFilter struct
96 AddressFilter(AddressFilterAction action, uint32_t from, uint32_t to, unsigned priority=0) argument
105 int compare(const AddressFilter & other) const; argument
109 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 …]
H A DStExecutableImage.cpp129 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()