/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_gatt_client.h | 212 * @param withoutRespond Respond status. 217 virtual int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = false) = 0; 223 * @param withoutRespond Respond status.
|
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_gatt_client.h | 44 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_gatt_client_server.h | 44 int WriteCharacteristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
|
/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) override;
|
H A D | gatt_client_service.cpp | 109 int appId, uint16_t handle, const GattValue &value, int length, bool withoutRespond = false); 295 int GattClientService::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() 727 if (!withoutRespond) { in WriteCharacteristic() 732 if (withoutRespond) { in WriteCharacteristic() 720 WriteCharacteristic( int appId, uint16_t handle, const GattValue &value, int length, bool withoutRespond) WriteCharacteristic() argument
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_gatt_client_proxy.h | 41 int WriteCharacteristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
|
/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() 406 HILOGI("appId: %{public}d, withoutRespond: %{public}d", appId, withoutRespond); in WriteCharacteristic() 420 return pimpl->clientService_->WriteCharacteristic(appId, character, withoutRespond); in WriteCharacteristic() 403 WriteCharacteristic( int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) WriteCharacteristic() argument
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_gatt_client.cpp | 972 bool withoutRespond = true; in WriteCharacteristic() local 979 withoutRespond = ((characteristic.GetWriteType() == in WriteCharacteristic() 981 HILOGD("Write without responseļ¼%{public}d", withoutRespond); in WriteCharacteristic() 983 // if withoutRespond is true, no need wait for callback in WriteCharacteristic() 984 pimpl->requestInformation_.doing_ = (!withoutRespond); in WriteCharacteristic() 985 result = proxy->WriteCharacteristic(pimpl->applicationId_, &character, withoutRespond); in WriteCharacteristic()
|
/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()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_gatt_client_proxy.cpp | 150 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) in WriteCharacteristic() 158 CHECK_AND_RETURN_LOG_RET(data.WriteBool(withoutRespond), in WriteCharacteristic() 159 BT_ERR_IPC_TRANS_FAILED, "write withoutRespond error"); in WriteCharacteristic() 149 WriteCharacteristic( int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) WriteCharacteristic() argument
|