Home
last modified time | relevance | path

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

/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_gatt_client.h212 * @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 Di_bluetooth_gatt_client.h44 int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_gatt_client_server.h44 int WriteCharacteristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_client_service.h42 int WriteCharacteristic(int appId, Characteristic &characteristic, bool withoutRespond = false) override;
H A Dgatt_client_service.cpp109 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 Dbluetooth_gatt_client_proxy.h41 int WriteCharacteristic(int32_t appId, BluetoothGattCharacteristic *characteristic, bool withoutRespond) override;
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_gatt_client_server.cpp404 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 Dbluetooth_gatt_client.cpp972 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 Dbluetooth_gatt_client_stub.cpp190 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 Dbluetooth_gatt_client_proxy.cpp150 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

Completed in 8 milliseconds