Home
last modified time | relevance | path

Searched refs:BluetoothGattService (Results 1 - 24 of 24) sorted by relevance

/foundation/communication/bluetooth/frameworks/inner/ipc/parcel/
H A Dbluetooth_gatt_service_parcel.cpp25 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 Dbluetooth_gatt_service_parcel.h24 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 Di_bluetooth_gatt_server.h33 virtual int AddService(int32_t appId, BluetoothGattService *services) = 0;
41 virtual int RemoveService(int32_t appId, const BluetoothGattService &services) = 0;
H A Di_bluetooth_gatt_client_callback.h41 virtual void OnServicesChanged(std::vector<BluetoothGattService> &service) = 0;
H A Di_bluetooth_gatt_server_callback.h33 virtual void OnAddService(int32_t ret, const BluetoothGattService &service) = 0;
H A Di_bluetooth_gatt_client.h51 virtual int GetServices(int32_t appId, std::vector<BluetoothGattService> &service) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_gatt_server_server.h31 int AddService(int32_t appId, BluetoothGattService *services) override;
39 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
H A Dbluetooth_gatt_client_server.h51 int GetServices(int32_t appId, ::std::vector<BluetoothGattService> &service) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_gatt_server_proxy.h29 int AddService(int32_t appId, BluetoothGattService *services) override;
37 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
H A Dbluetooth_gatt_client_proxy.h48 int GetServices(int32_t appId, std::vector<BluetoothGattService> &service) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_gatt_client_callback_stub.cpp211 std::vector<BluetoothGattService> service; in OnServicesChangedInner()
213 std::shared_ptr<BluetoothGattService> dev(data.ReadParcelable<BluetoothGattService>()); in OnServicesChangedInner()
H A Dbluetooth_gatt_server_callback_stub.cpp121 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in OnAddServiceInner()
H A Dbluetooth_gatt_client_proxy.cpp281 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 Dbluetooth_gatt_server_proxy.cpp22 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 Dbluetooth_gatt_server_stub.cpp81 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in AddServiceInner()
161 std::shared_ptr<BluetoothGattService> service(data.ReadParcelable<BluetoothGattService>()); in RemoveServiceInner()
H A Dbluetooth_gatt_client_callback_proxy.cpp276 void BluetoothGattClientCallbackProxy::OnServicesChanged(std::vector<BluetoothGattService> &service) in OnServicesChanged()
H A Dbluetooth_gatt_server_callback_proxy.cpp82 void BluetoothGattServerCallbackProxy::OnAddService(int32_t ret, const BluetoothGattService &service) in OnAddService()
H A Dbluetooth_gatt_client_stub.cpp302 std::vector<BluetoothGattService> service; in GetServicesInner()
/foundation/communication/bluetooth_service/services/bluetooth/ipc/include/
H A Dbluetooth_gatt_client_callback_proxy.h39 void OnServicesChanged(std::vector<BluetoothGattService> &service) override;
H A Dbluetooth_gatt_server_callback_proxy.h33 void OnAddService(int32_t ret, const BluetoothGattService &service) override;
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_gatt_client_server.cpp165 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 Dbluetooth_gatt_server_server.cpp165 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 Dbluetooth_gatt_server.cpp97 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 Dbluetooth_gatt_client.cpp118 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()

Completed in 13 milliseconds