Home
last modified time | relevance | path

Searched refs:Equals (Results 1 – 9 of 9) sorted by relevance

/system/bt/service/common/bluetooth/
Ddescriptor.cc36 bool Descriptor::Equals(const Descriptor& other) const { in Equals() function in bluetooth::Descriptor
41 bool Descriptor::operator==(const Descriptor& rhs) const { return Equals(rhs); } in operator ==()
44 return !Equals(rhs); in operator !=()
Dcharacteristic.cc40 bool Characteristic::Equals(const Characteristic& other) const { in Equals() function in bluetooth::Characteristic
48 return Equals(rhs); in operator ==()
52 return !Equals(rhs); in operator !=()
Dservice.cc39 bool Service::Equals(const Service& other) const { in Equals() function in bluetooth::Service
45 bool Service::operator==(const Service& rhs) const { return Equals(rhs); } in operator ==()
47 bool Service::operator!=(const Service& rhs) const { return !Equals(rhs); } in operator !=()
Ddescriptor.h32 bool Equals(const Descriptor& other) const;
Dcharacteristic.h41 bool Equals(const Characteristic& other) const;
Dservice.h41 bool Equals(const Service& other) const;
/system/media/brillo/audio/audioservice/
Daudio_service_callback.cpp69 bool AudioServiceCallback::Equals(const android::sp<AudioServiceCallback>& callback) { in Equals() function in brillo::AudioServiceCallback
70 if (callback->connected_callback_.Equals(connected_callback_) && in Equals()
71 callback->disconnected_callback_.Equals(disconnected_callback_) && in Equals()
72 callback->volume_callback_.Equals(volume_callback_) && in Equals()
Daudio_service_callback.h65 bool Equals(const android::sp<AudioServiceCallback>& callback);
Dbrillo_audio_client.cpp197 if (entry.second->Equals(callback)) { in RegisterAudioCallback()