Home
last modified time | relevance | path

Searched refs:needRsp (Results 1 – 25 of 28) sorted by relevance

12

/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/
H A Dnapi_bluetooth_ble_utils.cpp300 napi_value needRsp; in ConvertCharacteristicWriteReqToJS() local
301 …et_boolean(env, characteristic.GetWriteType() == GattCharacteristic::WriteType::DEFAULT, &needRsp); in ConvertCharacteristicWriteReqToJS()
302 napi_set_named_property(env, result, "needRsp", needRsp); in ConvertCharacteristicWriteReqToJS()
347 napi_value needRsp; in ConvertDescriptorWriteReqToJS() local
348 napi_get_boolean(env, true, &needRsp); in ConvertDescriptorWriteReqToJS()
349 napi_set_named_property(env, result, "needRsp", needRsp); in ConvertDescriptorWriteReqToJS()
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/MainAbility/model/
H A DgattServerInterface.ets525 let needRsp: boolean = characteristicWriteReq.needRsp;
536 characteristicWriteMsg += "needRsp =" + needRsp;
549 if ( needRsp ) {
665 let needRsp: boolean = descriptorWriteReq.needRsp;
683 if ( needRsp ) {
H A DgattServerManagerInterface.ets487 let needRsp = characteristicWriteReq.needRsp;
498 characteristicWriteMsg += "needRsp =" + needRsp;
511 if ( needRsp ) {
624 let needRsp = descriptorWriteReq.needRsp;
642 if ( needRsp ) {
/ohos5.0/docs/zh-cn/application-dev/connectivity/bluetooth/
H A Dgatt-development-guide.md518 console.info(TAG, 'receive characteristicWrite: needRsp=' + charReq.needRsp);
519 if (!charReq.needRsp) {
592 console.info(TAG, 'receive descriptorWrite: needRsp=' + desReq.needRsp);
593 if (!desReq.needRsp) {
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dsoftbus_adapter_ble_gatt_server_test.cpp557 .needRsp = true,
569 .needRsp = true,
820 …!(want.needRsp ? actual.needRsp : !actual.needRsp) || !(want.isPrep ? actual.isPrep : !actual.isPr… in ExpectGattWriteRequest()
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dble_service_connection_test.cpp163 writeCbPara.needRsp = true;
168 writeCbPara.needRsp = false;
174 writeCbPara.needRsp = false;
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/
H A Dsoftbus_adapter_ble_gatt_server.c547 writeCbPara.attrHandle, writeCbPara.needRsp); in BleRequestWriteCallback()
556 .needRsp = writeCbPara.needRsp, in BleRequestWriteCallback()
568 if (writeCbPara.needRsp) { in BleRequestWriteCallback()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/include/
H A Dsoftbus_adapter_ble_gatt_server.h92 bool needRsp; member
/ohos5.0/docs/en/application-dev/connectivity/bluetooth/
H A Dgatt-development-guide.md522 console.info(TAG, 'receive characteristicWrite: needRsp=' + charReq.needRsp);
523 if (!charReq.needRsp) {
596 console.info(TAG, 'receive descriptorWrite: needRsp=' + desReq.needRsp);
597 if (!desReq.needRsp) {
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt_server.h151 bool needRsp; member
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt_server.cpp398 … writeInfo.needRsp = (characteristic.GetWriteType() == GattCharacteristic::WriteType::DEFAULT); in OnCharacteristicWriteRequest()
474 writeInfo.needRsp = true; in OnDescriptorWriteRequest()
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_server.c1061 writeCbPara.connId, writeCbPara.attrHandle, writeCbPara.needRsp); in BleRequestWriteCallback()
1063 if (writeCbPara.needRsp) { in BleRequestWriteCallback()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-connectivity-kit/
H A Djs-apis-bluetooth.md2150 let needRsp : boolean = CharacteristicWriteReq.needRsp;
2321 let needRsp : boolean = DescriptorWriteReq.needRsp;
3411 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。true表示需要回复。 |
3451 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。 |
H A Djs-apis-bluetooth-ble.md1796 let needRsp: boolean = characteristicWriteRequest.needRsp;
1993 let needRsp: boolean = descriptorWriteRequest.needRsp;
3798 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。true表示需要回复。 |
3836 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。 |
H A Djs-apis-bluetoothManager.md3144 let needRsp: boolean = characteristicWriteRequest.needRsp;
3347 let needRsp: boolean = descriptorWriteRequest.needRsp;
4743 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。true表示需要回复。 |
4783 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。 |
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-communicate.md340 | ohos.bluetooth | DescriptorWriteReq | needRsp: boolean; | 新增 |
354 | ohos.bluetooth | CharacteristicWriteReq | needRsp: boolean; | 新增 |
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-communicate.md340 | ohos.bluetooth | DescriptorWriteReq | needRsp: boolean; | Added|
354 | ohos.bluetooth | CharacteristicWriteReq | needRsp: boolean; | Added|
/ohos5.0/docs/en/application-dev/reference/apis-connectivity-kit/
H A Djs-apis-bluetooth-ble.md1783 let needRsp: boolean = characteristicWriteRequest.needRsp;
1980 let needRsp: boolean = descriptorWriteRequest.needRsp;
3785 | needRsp | boolean | Yes | No | Whether to send a response to the GATT client. The…
3823 | needRsp | boolean | Yes | No | Whether to send a response to the GATT client. …
H A Djs-apis-bluetooth.md2151 let needRsp : boolean = CharacteristicWriteReq.needRsp;
2322 let needRsp : boolean = DescriptorWriteReq.needRsp;
3449 | needRsp | boolean | Yes | No | Whether to send a response to the GATT client. …
H A Djs-apis-bluetoothManager.md3144 let needRsp: boolean = characteristicWriteRequest.needRsp;
3347 let needRsp: boolean = descriptorWriteRequest.needRsp;
4780 | needRsp | boolean | Yes | No | Whether to send a response to the GATT client. …
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v4.0-beta2/
H A Djs-apidiff-communication.md190 |新增|NA|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts|
191 |新增|NA|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts|
638needRsp: boolean;<br>旧版本信息:|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10…
639needRsp: boolean;<br>旧版本信息:|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10<br>…
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v4.0-beta2/
H A Djs-apidiff-communication.md190 |Added|NA|Class name: CharacteristicWriteRequest;<br>Method or attribute name: needRsp: boolean;|@o…
191 |Added|NA|Class name: DescriptorWriteRequest;<br>Method or attribute name: needRsp: boolean;|@ohos.…
638needRsp: boolean;<br>Old version information: |Class name: CharacteristicWriteRequest;<br>Method o…
639needRsp: boolean;<br>Old version information: |Class name: DescriptorWriteRequest;<br>Method or at…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-communication.md183 |新增|NA|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts|
184 |新增|NA|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts|
887needRsp: boolean;<br>旧版本信息:|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10…
888needRsp: boolean;<br>旧版本信息:|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10<br>…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-communication.md228 |新增|NA|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetoothManager.d.ts|
229 |新增|NA|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetoothManager.d.ts|
1116 …变化|类名:CharacteristicWriteReq;<br>方法or属性:needRsp: boolean;<br>旧版本信息:|类名:CharacteristicWriteReq;<br>…
1117 |废弃版本有变化|类名:DescriptorWriteReq;<br>方法or属性:needRsp: boolean;<br>旧版本信息:|类名:DescriptorWriteReq;<br>方法o…
/ohos5.0/docs/zh-cn/release-notes/api-diff/Beta5 to v3.2-Release/
H A Djs-apidiff-communication.md142 |新增|NA|模块名: ohos.bluetoothManager<br>类名: CharacteristicWriteRequest<br>方法 or 属性: needRsp: boolean;|…
158 |新增|NA|模块名: ohos.bluetoothManager<br>类名: DescriptorWriteRequest<br>方法 or 属性: needRsp: boolean;|@oho…

12