Lines Matching refs:UniqueFdAddDeletor

59 class UniqueFdAddDeletor;  variable
61 bool operator==(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
63 bool operator!=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
65 bool operator>=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
67 bool operator>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
69 bool operator<=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
71 bool operator<(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
86 class UniqueFdAddDeletor final {
87 friend bool operator==<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
89 friend bool operator!=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
91 friend bool operator>=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
93 friend bool operator><Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
95 friend bool operator<=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
97 friend bool operator< <Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
105 explicit UniqueFdAddDeletor(const int& value) in UniqueFdAddDeletor() function
114 UniqueFdAddDeletor() in UniqueFdAddDeletor() function
124 ~UniqueFdAddDeletor() { Reset(-1); } in ~UniqueFdAddDeletor()
171 UniqueFdAddDeletor(UniqueFdAddDeletor&& rhs) in UniqueFdAddDeletor() function
187 UniqueFdAddDeletor& operator=(UniqueFdAddDeletor&& rhs)
290 UniqueFdAddDeletor(const UniqueFdAddDeletor& rhs) = delete;
291 UniqueFdAddDeletor& operator=(const UniqueFdAddDeletor& rhs) = delete;
306 bool operator==(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
324 bool operator!=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
342 bool operator>=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
360 bool operator>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
378 bool operator<=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
396 bool operator<(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
401 using UniqueFd = UniqueFdAddDeletor<DefaultDeleter>;