Home
last modified time | relevance | path

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

/foundation/communication/bluetooth/services/bluetooth_standard/ipc/parcel/
Dbluetooth_gatt_service.h24 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);
Dbluetooth_gatt_service.cpp24 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/
Dbluetooth_gatt_server_server.h31 int AddService(int32_t appId, BluetoothGattService *services) override;
38 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
Dbluetooth_gatt_client_server.h48 void GetServices(int32_t appId, ::std::vector<BluetoothGattService> &service) override;
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/include/
Dbluetooth_gatt_server_proxy.h29 int AddService(int32_t appId, BluetoothGattService *services) override;
36 int RemoveService(int32_t appId, const BluetoothGattService &services) override;
Di_bluetooth_gatt_server.h46 virtual int AddService(int32_t appId, BluetoothGattService *services) = 0;
53 virtual int RemoveService(int32_t appId, const BluetoothGattService &services) = 0;
Di_bluetooth_gatt_client_callback.h52 virtual void OnServicesChanged(std::vector<BluetoothGattService> &service) = 0;
Dbluetooth_gatt_client_callback_proxy.h41 void OnServicesChanged(std::vector<BluetoothGattService> &service) override;
Di_bluetooth_gatt_server_callback.h45 virtual void OnAddService(int32_t ret, const BluetoothGattService &service) = 0;
Dbluetooth_gatt_server_callback_proxy.h33 void OnAddService(int32_t ret, const BluetoothGattService &service) override;
Dbluetooth_gatt_client_proxy.h45 void GetServices(int32_t appId, std::vector<BluetoothGattService> &service) override;
Di_bluetooth_gatt_client.h65 virtual void GetServices(int32_t appId, std::vector<BluetoothGattService> &service) = 0;
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/src/
Dbluetooth_gatt_server_stub.cpp79 BluetoothGattService *services = data.ReadParcelable<BluetoothGattService>(); in AddServiceInner()
144 const BluetoothGattService *services = data.ReadParcelable<BluetoothGattService>(); in RemoveServiceInner()
Dbluetooth_gatt_client_callback_stub.cpp166 std::vector<BluetoothGattService> service; in OnServicesChangedInner()
168 std::unique_ptr<BluetoothGattService> dev(data.ReadParcelable<BluetoothGattService>()); in OnServicesChangedInner()
Dbluetooth_gatt_server_callback_stub.cpp102 const BluetoothGattService *service = data.ReadParcelable<BluetoothGattService>(); in OnAddServiceInner()
Dbluetooth_gatt_client_proxy.cpp387 void BluetoothGattClientProxy::GetServices(int32_t appId, std::vector<BluetoothGattService> &servic… in GetServices()
409 std::unique_ptr<BluetoothGattService> dev(reply.ReadParcelable<BluetoothGattService>()); in GetServices()
Dbluetooth_gatt_server_proxy.cpp22 int BluetoothGattServerProxy::AddService(int32_t appId, BluetoothGattService *services) in AddService()
174 int BluetoothGattServerProxy::RemoveService(int32_t appId, const BluetoothGattService &services) in RemoveService()
Dbluetooth_gatt_server_callback_proxy.cpp81 void BluetoothGattServerCallbackProxy::OnAddService(int32_t ret, const BluetoothGattService &servic… in OnAddService()
Dbluetooth_gatt_client_callback_proxy.cpp276 void BluetoothGattClientCallbackProxy::OnServicesChanged(std::vector<BluetoothGattService> &service) in OnServicesChanged()
Dbluetooth_gatt_client_stub.cpp277 std::vector<BluetoothGattService> service; in GetServicesInner()
/foundation/communication/bluetooth/services/bluetooth_standard/server/src/
Dbluetooth_gatt_server_server.cpp125 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()
Dbluetooth_gatt_client_server.cpp138 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/
Dbluetooth_gatt_server.cpp97 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()
Dbluetooth_gatt_client.cpp105 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()