/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_gatt_client.h | 44 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) = 0;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_gatt_client_server.h | 44 …teristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/ |
H A D | gatt_client_service.h | 42 …int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = false) ov…
|
H A D | gatt_client_service.cpp | 109 … int appId, uint16_t handle, const GattValue &value, int length, bool withoutRespond = false); 295 …tClientService::WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond) in WriteCharacteristic() argument 312 withoutRespond)); in WriteCharacteristic() 721 int appId, uint16_t handle, const GattValue &value, int length, bool withoutRespond) in WriteCharacteristic() argument 727 if (!withoutRespond) { in WriteCharacteristic() 732 if (withoutRespond) { in WriteCharacteristic()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_gatt_client_proxy.h | 41 …teristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_gatt_client.h | 217 …virtual int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = f…
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_gatt_client_server.cpp | 404 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) in WriteCharacteristic() argument 406 HILOGI("appId: %{public}d, withoutRespond: %{public}d", appId, withoutRespond); in WriteCharacteristic() 420 return pimpl->clientService_->WriteCharacteristic(appId, character, withoutRespond); in WriteCharacteristic()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_gatt_client_stub.cpp | 190 bool withoutRespond = data.ReadBool(); in WriteCharacteristicInner() local 191 int result = WriteCharacteristic(appId, characteristic.get(), withoutRespond); in WriteCharacteristicInner()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_gatt_client.cpp | 993 bool withoutRespond = true; in WriteCharacteristic() local 1000 withoutRespond = ((characteristic.GetWriteType() == in WriteCharacteristic() 1002 HILOGD("Write without response:%{public}d", withoutRespond); in WriteCharacteristic() 1005 pimpl->requestInformation_.doing_ = (!withoutRespond); in WriteCharacteristic() 1006 result = proxy->WriteCharacteristic(pimpl->applicationId_, &character, withoutRespond); in WriteCharacteristic()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_gatt_client_proxy.cpp | 153 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) in WriteCharacteristic() argument 161 CHECK_AND_RETURN_LOG_RET(data.WriteBool(withoutRespond), in WriteCharacteristic()
|