Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:uuid

19 #include "bluetooth/uuid.h"
31 class UUID : public Parcelable {
33 UUID() = default;
35 UUID(const ::bluetooth::Uuid& uuid) : uuid(uuid){}; // NOLINT
36 ~UUID() = default;
52 bool operator==(::bluetooth::Uuid rhs) const { return uuid == rhs; }
54 ::bluetooth::Uuid uuid;
59 inline bool operator==(const ::bluetooth::Uuid& lhs,
60 const android::bluetooth::UUID& rhs) {
61 return lhs == rhs.uuid;