Home
last modified time | relevance | path

Searched refs:withoutRespond (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_gatt_client.h44 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_gatt_client_server.h44 …teristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_client_service.h42 …int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = false) ov…
H A Dgatt_client_service.cpp109 … 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 Dbluetooth_gatt_client_proxy.h41 …teristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_gatt_client.h217 …virtual int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = f…
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_gatt_client_server.cpp404 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 Dbluetooth_gatt_client_stub.cpp190 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 Dbluetooth_gatt_client.cpp993 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 Dbluetooth_gatt_client_proxy.cpp153 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) in WriteCharacteristic() argument
161 CHECK_AND_RETURN_LOG_RET(data.WriteBool(withoutRespond), in WriteCharacteristic()