/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/ |
H A D | napi_bluetooth_ble_utils.cpp | 300 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 D | gattServerInterface.ets | 525 let needRsp: boolean = characteristicWriteReq.needRsp; 536 characteristicWriteMsg += "needRsp =" + needRsp; 549 if ( needRsp ) { 665 let needRsp: boolean = descriptorWriteReq.needRsp; 683 if ( needRsp ) {
|
H A D | gattServerManagerInterface.ets | 487 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 D | gatt-development-guide.md | 518 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 D | softbus_adapter_ble_gatt_server_test.cpp | 557 .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 D | ble_service_connection_test.cpp | 163 writeCbPara.needRsp = true; 168 writeCbPara.needRsp = false; 174 writeCbPara.needRsp = false;
|
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/ |
H A D | softbus_adapter_ble_gatt_server.c | 547 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 D | softbus_adapter_ble_gatt_server.h | 92 bool needRsp; member
|
/ohos5.0/docs/en/application-dev/connectivity/bluetooth/ |
H A D | gatt-development-guide.md | 522 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 D | ohos_bt_gatt_server.h | 151 bool needRsp; member
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/ |
H A D | ohos_bt_gatt_server.cpp | 398 … 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 D | softbus_conn_ble_server.c | 1061 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 D | js-apis-bluetooth.md | 2150 let needRsp : boolean = CharacteristicWriteReq.needRsp; 2321 let needRsp : boolean = DescriptorWriteReq.needRsp; 3411 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。true表示需要回复。 | 3451 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。 |
|
H A D | js-apis-bluetooth-ble.md | 1796 let needRsp: boolean = characteristicWriteRequest.needRsp; 1993 let needRsp: boolean = descriptorWriteRequest.needRsp; 3798 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。true表示需要回复。 | 3836 | needRsp | boolean | 是 | 否 | 表示是否要给client端回复响应。 |
|
H A D | js-apis-bluetoothManager.md | 3144 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 D | js-apidiff-communicate.md | 340 | ohos.bluetooth | DescriptorWriteReq | needRsp: boolean; | 新增 | 354 | ohos.bluetooth | CharacteristicWriteReq | needRsp: boolean; | 新增 |
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-communicate.md | 340 | 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 D | js-apis-bluetooth-ble.md | 1783 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 D | js-apis-bluetooth.md | 2151 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 D | js-apis-bluetoothManager.md | 3144 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 D | js-apidiff-communication.md | 190 |新增|NA|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts| 191 |新增|NA|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts| 638 …needRsp: boolean;<br>旧版本信息:|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10… 639 …needRsp: 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 D | js-apidiff-communication.md | 190 |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.… 638 …needRsp: boolean;<br>Old version information: |Class name: CharacteristicWriteRequest;<br>Method o… 639 …needRsp: 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 D | js-apidiff-communication.md | 183 |新增|NA|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts| 184 |新增|NA|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;|@ohos.bluetooth.ble.d.ts| 887 …needRsp: boolean;<br>旧版本信息:|类名:CharacteristicWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10… 888 …needRsp: boolean;<br>旧版本信息:|类名:DescriptorWriteRequest;<br>方法or属性:needRsp: boolean;<br>新版本信息:10<br>…
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-communication.md | 228 |新增|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 D | js-apidiff-communication.md | 142 |新增|NA|模块名: ohos.bluetoothManager<br>类名: CharacteristicWriteRequest<br>方法 or 属性: needRsp: boolean;|… 158 |新增|NA|模块名: ohos.bluetoothManager<br>类名: DescriptorWriteRequest<br>方法 or 属性: needRsp: boolean;|@oho…
|