/foundation/communication/bluetooth/frameworks/inner/ipc/parcel/ |
H A D | bluetooth_gatt_service_parcel.cpp | 25 bool BluetoothGattService::Marshalling(Parcel &parcel) const in Marshalling() 48 BluetoothGattService service = BluetoothGattService(serv); in Marshalling() 66 BluetoothGattService *BluetoothGattService::Unmarshalling(Parcel &parcel) in Unmarshalling() 68 BluetoothGattService *service = new BluetoothGattService(); in Unmarshalling() 76 bool BluetoothGattService::WriteToParcel(Parcel &parcel) in WriteToParcel() 81 bool BluetoothGattService::ReadFromParcel(Parcel &parcel) in ReadFromParcel() 106 std::shared_ptr<BluetoothGattService> servic in ReadFromParcel() [all...] |
H A D | bluetooth_gatt_service_parcel.h | 24 class BluetoothGattService : public Parcelable, public bluetooth::Service { class 26 BluetoothGattService() = default; 27 BluetoothGattService(const bluetooth::Service &other) : bluetooth::Service(other) in BluetoothGattService() function in OHOS::Bluetooth::BluetoothGattService 29 BluetoothGattService(const BluetoothGattService &other) : bluetooth::Service(other) in BluetoothGattService() function in OHOS::Bluetooth::BluetoothGattService 32 ~BluetoothGattService() override = default; 36 static BluetoothGattService *Unmarshalling(Parcel &parcel);
|
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_gatt_server.h | 33 virtual int AddService(int32_t appId, BluetoothGattService *services) = 0; 41 virtual int RemoveService(int32_t appId, const BluetoothGattService &services) = 0;
|
H A D | i_bluetooth_gatt_client_callback.h | 41 virtual void OnServicesChanged(std::vector<BluetoothGattService> &service) = 0;
|
H A D | i_bluetooth_gatt_server_callback.h | 33 virtual void OnAddService(int32_t ret, const BluetoothGattService &service) = 0;
|
H A D | i_bluetooth_gatt_client.h | 51 virtual int GetServices(int32_t appId, std::vector<BluetoothGattService> &service) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_gatt_server_server.h | 31 int AddService(int32_t appId, BluetoothGattService *services) override; 39 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
|
H A D | bluetooth_gatt_client_server.h | 51 int GetServices(int32_t appId, ::std::vector<BluetoothGattService> &service) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_gatt_server_proxy.h | 29 int AddService(int32_t appId, BluetoothGattService *services) override; 37 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
|
H A D | bluetooth_gatt_client_proxy.h | 48 int GetServices(int32_t appId, std::vector<BluetoothGattService> &service) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_gatt_client_callback_stub.cpp | 211 std::vector<BluetoothGattService> service; in OnServicesChangedInner() 213 std::shared_ptr<BluetoothGattService> dev(data.ReadParcelable<BluetoothGattService>()); in OnServicesChangedInner()
|
H A D | bluetooth_gatt_server_callback_stub.cpp | 121 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in OnAddServiceInner()
|
H A D | bluetooth_gatt_client_proxy.cpp | 281 int BluetoothGattClientProxy::GetServices(int32_t appId, std::vector<BluetoothGattService> &service) in GetServices() 301 std::shared_ptr<BluetoothGattService> dev(reply.ReadParcelable<BluetoothGattService>()); in GetServices()
|
H A D | bluetooth_gatt_server_proxy.cpp | 22 int BluetoothGattServerProxy::AddService(int32_t appId, BluetoothGattService *services) in AddService() 137 int BluetoothGattServerProxy::RemoveService(int32_t appId, const BluetoothGattService &services) in RemoveService()
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_gatt_server_stub.cpp | 81 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in AddServiceInner() 161 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in RemoveServiceInner()
|
H A D | bluetooth_gatt_client_callback_proxy.cpp | 276 void BluetoothGattClientCallbackProxy::OnServicesChanged(std::vector<BluetoothGattService> &service) in OnServicesChanged()
|
H A D | bluetooth_gatt_server_callback_proxy.cpp | 82 void BluetoothGattServerCallbackProxy::OnAddService(int32_t ret, const BluetoothGattService &service) in OnAddService()
|
H A D | bluetooth_gatt_client_stub.cpp | 302 std::vector<BluetoothGattService> service; in GetServicesInner()
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/include/ |
H A D | bluetooth_gatt_client_callback_proxy.h | 39 void OnServicesChanged(std::vector<BluetoothGattService> &service) override;
|
H A D | bluetooth_gatt_server_callback_proxy.h | 33 void OnAddService(int32_t ret, const BluetoothGattService &service) override;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_gatt_client_server.cpp | 165 std::vector<BluetoothGattService> result; 168 result.push_back((BluetoothGattService)services[i]); 510 int BluetoothGattClientServer::GetServices(int32_t appId, ::std::vector<BluetoothGattService> &service) in GetServices()
|
H A D | bluetooth_gatt_server_server.cpp | 165 callback_->OnAddService(ret, (BluetoothGattService)services); 306 int BluetoothGattServerServer::AddService(int32_t appId, BluetoothGattService *services) in AddService() 370 int BluetoothGattServerServer::RemoveService(int32_t appId, const BluetoothGattService &services) in RemoveService()
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_gatt_server.cpp | 97 GattService BuildService(const BluetoothGattService &service); 346 void OnAddService(int32_t ret, const BluetoothGattService &service) override 408 GattService GattServer::impl::BuildService(const BluetoothGattService &service) in BuildService() 609 BluetoothGattService svc; in AddService() 797 pimpl->applicationId_, (BluetoothGattService)bluetooth::Service(sIt->GetHandle())); in RemoveGattService()
|
H A D | bluetooth_gatt_client.cpp | 118 void BuildServiceList(const std::vector<BluetoothGattService> &src); 128 void OnServicesChanged(std::vector<BluetoothGattService> &service) override 437 void GattClient::impl::BuildServiceList(const std::vector<BluetoothGattService> &src) in BuildServiceList() 513 std::vector<BluetoothGattService> result; in GetServices()
|