Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_gatt_server.cpp82 std::list<GattService> gattServices_; member
340 … serverSptr->pimpl->gattServices_.emplace(serverSptr->pimpl->gattServices_.end(), gattService); in OnAddService()
427 for (auto &svc : gattServices_) { in GetIncludeService()
487 for (auto &svc : gattServices_) { in FindCharacteristic()
510 for (auto &svc : gattServices_) { in FindDescriptor()
637 pimpl->gattServices_.clear(); in ClearServices()
701 for (auto &svc : pimpl->gattServices_) { in GetService()
716 return pimpl->gattServices_; in GetServices()
722 return pimpl->gattServices_; in GetServices()
770 for (auto sIt = pimpl->gattServices_.begin(); sIt != pimpl->gattServices_.end(); sIt++) { in RemoveGattService()
[all …]
H A Dbluetooth_gatt_client.cpp107 std::vector<GattService> gattServices_; member
171 for (auto &svc : clientSptr->pimpl->gattServices_) { in OnCharacteristicChanged()
460 gattServices_.emplace_back(std::move(svcTmp)); in BuildServiceList()
480 for (auto &item : gattServices_) { in FindService()
514 gattServices_.clear(); in GetServices()
537 for (auto &svc : gattServices_) { in GetCharacteristicByHandle()
564 for (auto &svc : gattServices_) { in GetDescriptorByHandle()
737 for (auto &svc : pimpl->gattServices_) { in GetService()
763 return pimpl->gattServices_; in GetService()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/
H A Dnapi_bluetooth_ble_utils.h113 …NapiNativeGattServiceArray(const std::vector<GattService> &gattServices) : gattServices_(gattServi… in NapiNativeGattServiceArray()
118 std::vector<GattService> gattServices_ {};
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/
H A Dnapi_bluetooth_ble_utils.cpp411 ConvertGattServiceVectorToJS(env, object, const_cast<vector<GattService> &>(gattServices_)); in ToNapiValue()