Lines Matching refs:rhs
47 inline bool operator!=(const ParcelFileDescriptor& rhs) const {
48 return mFd.get() != rhs.mFd.get();
50 inline bool operator<(const ParcelFileDescriptor& rhs) const {
51 return mFd.get() < rhs.mFd.get();
53 inline bool operator<=(const ParcelFileDescriptor& rhs) const {
54 return mFd.get() <= rhs.mFd.get();
56 inline bool operator==(const ParcelFileDescriptor& rhs) const {
57 return mFd.get() == rhs.mFd.get();
59 inline bool operator>(const ParcelFileDescriptor& rhs) const {
60 return mFd.get() > rhs.mFd.get();
62 inline bool operator>=(const ParcelFileDescriptor& rhs) const {
63 return mFd.get() >= rhs.mFd.get();