Home
last modified time | relevance | path

Searched refs:AttributeEntity (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_database.h92 struct AttributeEntity { struct
97 AttributeEntity(uint8_t permissions, uint16_t handle, const Uuid &uuid) in AttributeEntity() argument
106 AttributeEntity(const AttributeEntity &) = delete; argument
107 AttributeEntity &operator=(const AttributeEntity &) = default; argument
108 AttributeEntity(AttributeEntity &&) = default;
109 AttributeEntity &operator=(AttributeEntity &&) = default; argument
193 … using GattAttributeEntity = std::optional<std::reference_wrapper<GattDatabase::AttributeEntity>>;
228 std::map<uint16_t, AttributeEntity> attributes_ = {};
H A Dgatt_database.cpp27 using GattAttributeEntity = std::optional<std::reference_wrapper<GattDatabase::AttributeEntity>>;
58 AttributeEntity cccAttributeValue(ccc.permissions_, ccc.valueHandle_, ccc.uuid_); in AddService()
68AttributeEntity descAttributeValue(descriptor.permissions_, descriptor.handle_, descriptor.uuid_); in AddService()
H A Dgatt_server_profile.h64 const std::optional<std::reference_wrapper<GattDatabase::AttributeEntity>> GetAttributeEntity(
H A Dgatt_server_profile.cpp2010 const std::optional<std::reference_wrapper<GattDatabase::AttributeEntity>> GattServerProfile::GetAt… in GetAttributeEntity()