Searched refs:IpNetmask (Results 1 - 4 of 4) sorted by relevance

/gem5/src/base/
H A Dinet.cc165 IpNetmask::string() const
173 operator==(const IpNetmask &left, const IpNetmask &right)
180 operator<<(ostream &stream, const IpNetmask &in)
H A Dinet.hh212 struct IpNetmask : public IpAddress struct in namespace:Net
218 IpNetmask() : IpAddress(), _netmask(0) function in struct:Net::IpNetmask
220 IpNetmask(const uint32_t __ip, const uint8_t __netmask) : function in struct:Net::IpNetmask
229 std::ostream &operator<<(std::ostream &stream, const IpNetmask &in);
230 bool operator==(const IpNetmask &left, const IpNetmask &right);
/gem5/src/python/pybind11/
H A Dcore.cc194 py::class_<Net::IpNetmask, Net::IpAddress>(m, "IpNetmask")
/gem5/src/python/m5/
H A Dparams.py1057 # When initializing an IpNetmask, pass in an existing IpNetmask, a string of
1060 class IpNetmask(IpAddress): class in inherits:IpAddress
1061 cxx_type = 'Net::IpNetmask'
1088 elif isinstance(args[0], IpNetmask):
1110 return "%s/%d" % (super(IpNetmask, self).__str__(), self.netmask)
1113 if isinstance(other, IpNetmask):
1129 from _m5.net import IpNetmask
1130 return IpNetmask(self.ip, self.netmask)
2183 'IpAddress', 'IpNetmask', 'IpWithPor
[all...]

Completed in 19 milliseconds