Lines Matching refs:other
20 Service::Service(const Service& other) {
21 handle_ = other.handle_;
22 primary_ = other.primary_;
23 uuid_ = other.uuid_;
24 characteristics_ = other.characteristics_;
25 included_services_ = other.included_services_;
28 Service& Service::operator=(const Service& other) {
29 if (*this == other) return *this;
31 handle_ = other.handle_;
32 primary_ = other.primary_;
33 uuid_ = other.uuid_;
34 characteristics_ = other.characteristics_;
35 included_services_ = other.included_services_;
39 bool Service::Equals(const Service& other) const {
40 return handle_ == other.handle_ && primary_ == other.primary_ &&
41 uuid_ == other.uuid_ && characteristics_ == other.characteristics_ &&
42 included_services_ == other.included_services_;