/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_gatt_service.cpp | 32 : handle_(0), endHandle_(0), serviceType_(type), includeServices_(), characteristics_(), uuid_(uuid) in GattService() 36 : handle_(handle), endHandle_(endHandle), serviceType_(type), includeServices_(), characteristics_(), uuid_(uuid) in GattService() 43 includeServices_(), in GattService() 47 includeServices_ = src.includeServices_; in GattService() 57 includeServices_(), in GattService() 61 includeServices_ = std::move(src.includeServices_); in GattService() 69 includeServices_.push_back(std::ref(service)); in AddService() 89 return includeServices_; in GetIncludedServices() [all...] |
H A D | bluetooth_gatt_server.cpp | 357 serverSptr->pimpl->BuildIncludeService(gattSvc, service.includeServices_); 614 svc.includeServices_.push_back(bluetooth::Service(isvc.get().GetHandle())); in AddService()
|
H A D | bluetooth_gatt_client.cpp | 464 for (auto &isvc : svc.includeServices_) { in BuildServiceList()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/parcel/ |
H A D | bluetooth_gatt_service_parcel.cpp | 43 uint32_t size = includeServices_.size(); in Marshalling() 47 for (auto serv : includeServices_) { in Marshalling() 110 includeServices_.push_back(*service); in ReadFromParcel()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/ |
H A D | gatt_database.cpp | 48 for (auto &includeService : service.includeServices_) { in AddService() 50 dbService.includeServices_.push_back(GattDatabase::IncludeService(includeService)); in AddService() 208 return std::any_of(svc.second.includeServices_.begin(), in IsReferenced() 209 svc.second.includeServices_.end(), in IsReferenced() 224 return &service->second.includeServices_; in GetIncludeServices() 232 auto it = std::find_if(svc.second.includeServices_.begin(), in GetIncludeService() 233 svc.second.includeServices_.end(), in GetIncludeService() 236 if (it != svc.second.includeServices_.end()) { in GetIncludeService() 401 for (auto &includeService : service.includeServices_) { in CheckIncludeServicesLegality() 471 count += service.includeServices_ [all...] |
H A D | gatt_database.h | 165 std::vector<IncludeService> includeServices_; member 173 includeServices_(), in Service() 182 includeServices_(), in Service()
|
H A D | gatt_cache.cpp | 42 it->second.includeServices_.push_back(includeService); in AddIncludeService() 144 return &service->second.includeServices_; in GetIncludeServices() 184 for (auto &isvc : svc.second.includeServices_) { in StoredToFile()
|
H A D | gatt_cache.h | 74 std::vector<IncludeService> includeServices_ = {}; member
|
H A D | gatt_client_service.cpp | 1247 for (auto &isvc : src.includeServices_) { in BuildService() 1248 dest.includeServices_.push_back(Service(isvc.uuid_, isvc.handle_, isvc.handle_, isvc.endHandle_)); in BuildService()
|
H A D | gatt_server_service.cpp | 1182 for (auto &inclueService : src.includeServices_) { in BuildService() 1183 dst.includeServices_.push_back(bluetooth::Service( in BuildService()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/common/ |
H A D | gatt_data.h | 129 :isPrimary_(false), handle_(0), startHandle_(0), endHandle_(0), uuid_(), includeServices_(), characteristics_() in Service() 135 includeServices_(), characteristics_() in Service() 140 : isPrimary_(false), handle_(handle), startHandle_(handle), endHandle_(0), uuid_(), includeServices_(), in Service() 146 : isPrimary_(false), handle_(handle), startHandle_(handle), endHandle_(endHandle), uuid_(), includeServices_(), in Service() 162 std::vector<Service> includeServices_; member
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_gatt_service.h | 187 std::vector<std::reference_wrapper<GattService>> includeServices_; member in OHOS::Bluetooth::GattService
|