/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_gatt_server.h | 40 const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_gatt_server_server.h | 38 const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_gatt_server_proxy.h | 36 const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) override;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_gatt_server.h | 214 * @param needConfirm Confirm need status. 219 virtual int NotifyClient(const GattDevice &device, Characteristic &characteristic, bool needConfirm = false) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/ |
H A D | gatt_server_service.h | 36 int NotifyClient(const GattDevice &device, Characteristic &characteristic, bool needConfirm = false) override;
|
H A D | gatt_client_profile_callback.h | 69 uint16_t connectHandle, uint16_t handle, GattValue &value, size_t len, bool needConfirm) {}; in OnCharacteristicNotifyEvent() 68 OnCharacteristicNotifyEvent( uint16_t connectHandle, uint16_t handle, GattValue &value, size_t len, bool needConfirm) OnCharacteristicNotifyEvent() argument
|
H A D | gatt_server_service.cpp | 78 const GattDevice &device, uint16_t valueHandle, const GattValue &value, size_t length, bool needConfirm); 249 int GattServerService::NotifyClient(const GattDevice &device, Characteristic &characteristic, bool needConfirm) in NotifyClient() argument 271 needConfirm)); in NotifyClient() 766 const GattDevice &device, uint16_t valueHandle, const GattValue &value, size_t length, bool needConfirm) in NotifyClient() 768 LOG_INFO("%{public}s:%{public}d:%{public}s:Confirm:%{public}d", __FILE__, __LINE__, __FUNCTION__, needConfirm); in NotifyClient() 772 if (needConfirm) { in NotifyClient() 765 NotifyClient( const GattDevice &device, uint16_t valueHandle, const GattValue &value, size_t length, bool needConfirm) NotifyClient() argument
|
H A D | gatt_client_service.cpp | 132 uint16_t connectHandle, uint16_t valueHandle, GattValue &value, size_t length, bool needConfirm); 546 uint16_t connectHandle, uint16_t handle, GattValue &value, size_t len, bool needConfirm) override 549 &impl::OnCharacteristicNotifyEvent, service_.pimpl.get(), connectHandle, handle, value, len, needConfirm)); 1008 uint16_t connectHandle, uint16_t valueHandle, GattValue &value, size_t length, bool needConfirm) in OnCharacteristicNotifyEvent() 1010 if (needConfirm) { in OnCharacteristicNotifyEvent() 1007 OnCharacteristicNotifyEvent( uint16_t connectHandle, uint16_t valueHandle, GattValue &value, size_t length, bool needConfirm) OnCharacteristicNotifyEvent() argument
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_gatt_server_proxy.cpp | 119 const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) in NotifyClient() 127 CHECK_AND_RETURN_LOG_RET(data.WriteBool(needConfirm), BT_ERR_IPC_TRANS_FAILED, "write needConfirm error"); in NotifyClient() 118 NotifyClient( const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) NotifyClient() argument
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_gatt_server_stub.cpp | 149 bool needConfirm = data.ReadBool(); in NotifyClientInner() local 150 int result = NotifyClient(*device, characteristic.get(), needConfirm); in NotifyClientInner()
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_gatt_server_server.cpp | 349 const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) in NotifyClient() 351 HILOGI("addr: %{public}s, needConfirm: %{public}d", GET_ENCRYPT_GATT_ADDR(device), needConfirm); in NotifyClient() 366 int ret = pimpl->serverService_->NotifyClient((bluetooth::GattDevice)device, character, needConfirm); in NotifyClient() 348 NotifyClient( const BluetoothGattDevice &device, BluetoothGattCharacteristic *characteristic, bool needConfirm) NotifyClient() argument
|