Lines Matching refs:lhs
309 bool operator==(const stats_line& lhs, const stats_line& rhs) { in operator ==() argument
310 return ((lhs.uid == rhs.uid) && (lhs.tag == rhs.tag) && (lhs.set == rhs.set) && in operator ==()
311 !strncmp(lhs.iface, rhs.iface, sizeof(lhs.iface))); in operator ==()
315 bool operator<(const stats_line& lhs, const stats_line& rhs) { in operator <() argument
316 int ret = strncmp(lhs.iface, rhs.iface, sizeof(lhs.iface)); in operator <()
318 if (lhs.uid < rhs.uid) return true; in operator <()
319 if (lhs.uid > rhs.uid) return false; in operator <()
320 if (lhs.tag < rhs.tag) return true; in operator <()
321 if (lhs.tag > rhs.tag) return false; in operator <()
322 if (lhs.set < rhs.set) return true; in operator <()
323 if (lhs.set > rhs.set) return false; in operator <()