/foundation/communication/bluetooth/services/bluetooth_standard/ipc/parcel/ |
D | bluetooth_gatt_service.h | 24 class BluetoothGattService : public Parcelable, public ::bluetooth::Service { 26 BluetoothGattService() = default; 27 BluetoothGattService(const ::bluetooth::Service &other) : ::bluetooth::Service(other) in BluetoothGattService() function 29 BluetoothGattService(const BluetoothGattService &other) : ::bluetooth::Service(other) in BluetoothGattService() function 31 ~BluetoothGattService() = default; 35 static BluetoothGattService *Unmarshalling(Parcel &parcel);
|
D | bluetooth_gatt_service.cpp | 24 bool BluetoothGattService::Marshalling(Parcel &parcel) const in Marshalling() 112 BluetoothGattService *BluetoothGattService::Unmarshalling(Parcel &parcel) in Unmarshalling() 114 BluetoothGattService *gattservice = new BluetoothGattService(); in Unmarshalling() 245 bool BluetoothGattService::writeToParcel(Parcel &parcel) in writeToParcel() 250 bool BluetoothGattService::readFromParcel(Parcel &parcel) in readFromParcel() 410 bool BluetoothGattService::ServiceIteratorWrite(const std::vector<Service> &service, Parcel &parcel… in ServiceIteratorWrite() 498 bool BluetoothGattService::ServiceIteratorRead(std::vector<Service> &service, Parcel &parcel, int l… in ServiceIteratorRead()
|
/foundation/communication/bluetooth/services/bluetooth_standard/server/include/ |
D | bluetooth_gatt_server_server.h | 31 int AddService(int32_t appId, BluetoothGattService *services) override; 38 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
|
D | bluetooth_gatt_client_server.h | 48 void GetServices(int32_t appId, ::std::vector<BluetoothGattService> &service) override;
|
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/include/ |
D | bluetooth_gatt_server_proxy.h | 29 int AddService(int32_t appId, BluetoothGattService *services) override; 36 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
|
D | i_bluetooth_gatt_server.h | 46 virtual int AddService(int32_t appId, BluetoothGattService *services) = 0; 53 virtual int RemoveService(int32_t appId, const BluetoothGattService &services) = 0;
|
D | i_bluetooth_gatt_client_callback.h | 52 virtual void OnServicesChanged(std::vector<BluetoothGattService> &service) = 0;
|
D | bluetooth_gatt_client_callback_proxy.h | 41 void OnServicesChanged(std::vector<BluetoothGattService> &service) override;
|
D | i_bluetooth_gatt_server_callback.h | 45 virtual void OnAddService(int32_t ret, const BluetoothGattService &service) = 0;
|
D | bluetooth_gatt_server_callback_proxy.h | 33 void OnAddService(int32_t ret, const BluetoothGattService &service) override;
|
D | bluetooth_gatt_client_proxy.h | 45 void GetServices(int32_t appId, std::vector<BluetoothGattService> &service) override;
|
D | i_bluetooth_gatt_client.h | 65 virtual void GetServices(int32_t appId, std::vector<BluetoothGattService> &service) = 0;
|
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/src/ |
D | bluetooth_gatt_server_stub.cpp | 79 BluetoothGattService *services = data.ReadParcelable<BluetoothGattService>(); in AddServiceInner() 144 const BluetoothGattService *services = data.ReadParcelable<BluetoothGattService>(); in RemoveServiceInner()
|
D | bluetooth_gatt_client_callback_stub.cpp | 166 std::vector<BluetoothGattService> service; in OnServicesChangedInner() 168 std::unique_ptr<BluetoothGattService> dev(data.ReadParcelable<BluetoothGattService>()); in OnServicesChangedInner()
|
D | bluetooth_gatt_server_callback_stub.cpp | 102 const BluetoothGattService *service = data.ReadParcelable<BluetoothGattService>(); in OnAddServiceInner()
|
D | bluetooth_gatt_client_proxy.cpp | 387 void BluetoothGattClientProxy::GetServices(int32_t appId, std::vector<BluetoothGattService> &servic… in GetServices() 409 std::unique_ptr<BluetoothGattService> dev(reply.ReadParcelable<BluetoothGattService>()); in GetServices()
|
D | bluetooth_gatt_server_proxy.cpp | 22 int BluetoothGattServerProxy::AddService(int32_t appId, BluetoothGattService *services) in AddService() 174 int BluetoothGattServerProxy::RemoveService(int32_t appId, const BluetoothGattService &services) in RemoveService()
|
D | bluetooth_gatt_server_callback_proxy.cpp | 81 void BluetoothGattServerCallbackProxy::OnAddService(int32_t ret, const BluetoothGattService &servic… in OnAddService()
|
D | bluetooth_gatt_client_callback_proxy.cpp | 276 void BluetoothGattClientCallbackProxy::OnServicesChanged(std::vector<BluetoothGattService> &service) in OnServicesChanged()
|
D | bluetooth_gatt_client_stub.cpp | 277 std::vector<BluetoothGattService> service; in GetServicesInner()
|
/foundation/communication/bluetooth/services/bluetooth_standard/server/src/ |
D | bluetooth_gatt_server_server.cpp | 125 callback_->OnAddService(ret, (BluetoothGattService)services); in OnAddService() 214 int BluetoothGattServerServer::AddService(int32_t appId, BluetoothGattService *services) in AddService() 261 int BluetoothGattServerServer::RemoveService(int32_t appId, const BluetoothGattService &services) in RemoveService()
|
D | bluetooth_gatt_client_server.cpp | 138 std::vector<BluetoothGattService> result; in OnServicesChanged() 141 result.push_back((BluetoothGattService)services[i]); in OnServicesChanged() 408 void BluetoothGattClientServer::GetServices(int32_t appId, ::std::vector<BluetoothGattService> &ser… in GetServices()
|
/foundation/communication/bluetooth/interfaces/innerkits/native_cpp/framework/src/ |
D | bluetooth_gatt_server.cpp | 97 GattService BuildService(const BluetoothGattService &svc); 272 void OnAddService(int32_t ret, const BluetoothGattService &service) override in OnAddService() 318 GattService GattServer::impl::BuildService(const BluetoothGattService &service) in BuildService() 523 BluetoothGattService svc; in AddService() 660 … pimpl->applicationId_, (BluetoothGattService)bluetooth::Service(service.GetHandle())); in RemoveGattService()
|
D | bluetooth_gatt_client.cpp | 105 void BuildServiceList(const std::vector<BluetoothGattService> &src); 134 void OnServicesChanged(std::vector<BluetoothGattService> &service) override in OnServicesChanged() 338 void GattClient::impl::BuildServiceList(const std::vector<BluetoothGattService> &src) in BuildServiceList() 393 std::vector<BluetoothGattService> result; in GetServices()
|