Lines Matching refs:rhs
45 inline bool operator!=(const ParcelFileDescriptor& rhs) const {
46 return mFd.get() != rhs.mFd.get();
48 inline bool operator<(const ParcelFileDescriptor& rhs) const {
49 return mFd.get() < rhs.mFd.get();
51 inline bool operator<=(const ParcelFileDescriptor& rhs) const {
52 return mFd.get() <= rhs.mFd.get();
54 inline bool operator==(const ParcelFileDescriptor& rhs) const {
55 return mFd.get() == rhs.mFd.get();
57 inline bool operator>(const ParcelFileDescriptor& rhs) const {
58 return mFd.get() > rhs.mFd.get();
60 inline bool operator>=(const ParcelFileDescriptor& rhs) const {
61 return mFd.get() >= rhs.mFd.get();