Home
last modified time | relevance | path

Searched refs:GetCharacteristics (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_gatt_service.h119 std::vector<GattCharacteristic> &GetCharacteristics();
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_gatt_service.cpp85 std::vector<GattCharacteristic> &GattService::GetCharacteristics() in GetCharacteristics() function in OHOS::Bluetooth::GattService
H A Dbluetooth_gatt_server.cpp488 for (auto &character : svc.GetCharacteristics()) { in FindCharacteristic()
511 for (auto &character : svc.GetCharacteristics()) { in FindDescriptor()
593 for (auto &character : service.GetCharacteristics()) { in AddService()
H A Dbluetooth_gatt_client.cpp172 for (auto &character : svc.GetCharacteristics()) { in OnCharacteristicChanged()
538 std::vector<GattCharacteristic> &characs = svc.GetCharacteristics(); in GetCharacteristicByHandle()
565 GattDescriptor *descPtr = getDescriptorFunc(svc.GetCharacteristics()); in GetDescriptorByHandle()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_cache.h98 std::map<uint16_t, Characteristic> *GetCharacteristics(uint16_t serviceHandle);
H A Dgatt_database.h205 const std::map<uint16_t, Characteristic> *GetCharacteristics(uint16_t serviceHandle);
H A Dgatt_cache.cpp149 std::map<uint16_t, GattCache::Characteristic> *GattCache::GetCharacteristics(uint16_t serviceHandle) in GetCharacteristics() function in OHOS::bluetooth::GattCache
H A Dgatt_client_profile.cpp356 auto iter = pimpl->cacheMap_.find(connectHandle)->second.GetCharacteristics(startHandle); in DiscoverAllCharacteristicOfService()
388 auto iter = pimpl->cacheMap_.find(connectHandle)->second.GetCharacteristics(startHandle); in DiscoverCharacteristicByUuid()
1487 *cacheMap_.find(connectHandle)->second.GetCharacteristics(iter->second.startHandle_)); in SendDiscoverAllCharacteristicRequest()
1898 … *cacheMap_.find(connectHandle)->second.GetCharacteristics(iter->second.startHandle_)); in SplitReadByTypeReqErrorParsing()
1905 … *cacheMap_.find(connectHandle)->second.GetCharacteristics(iter->second.startHandle_)); in SplitReadByTypeReqErrorParsing()
H A Dgatt_database.cpp243 const std::map<uint16_t, GattDatabase::Characteristic> *GattDatabase::GetCharacteristics(uint16_t s… in GetCharacteristics() function in OHOS::bluetooth::GattDatabase
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/gatt/
H A Dgatt_service_test.cpp231 res = getcharacters.GetCharacteristics();
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt_server.cpp310 vector<GattCharacteristic> &characteristics = service.GetCharacteristics(); in OnServiceAdded()
863 …GattCharacteristic &characteristic = GATTSERVICE(serverId, srvcHandle)->GetCharacteristics().back(… in BleGattsAddDescriptor()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/
H A Dnapi_bluetooth_ble_utils.cpp47 ConvertBLECharacteristicVectorToJS(env, characteristics, service.GetCharacteristics()); in ConvertGattServiceToJS()