Home
last modified time | relevance | path

Searched refs:remoteSupportLabels (Results 1 – 25 of 29) sorted by relevance

12

/ohos5.0/foundation/distributeddatamgr/kv_store/test/unittest/distributedKVStore/
H A DDeviceKvStoreKVPromiseJsTest.js713 var remoteSupportLabels = ['C', 'D'];
714 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
738 var remoteSupportLabels = ['B', 'C'];
739 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
763 var remoteSupportLabels = ['A', 'B'];
764 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
787 var remoteSupportLabels = ['A', 'B'];
788 await kvStore.setSyncRange(remoteSupportLabels).then((err) => {
1866 var remoteSupportLabels = ['A', 'B'];
1867 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
H A DSingleKvStoreKVPromiseJsTest.js718 var remoteSupportLabels = ['C', 'D'];
719 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
743 var remoteSupportLabels = ['B', 'C'];
744 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
768 var remoteSupportLabels = ['A', 'B'];
769 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
792 var remoteSupportLabels = ['A', 'B'];
793 await kvStore.setSyncRange(remoteSupportLabels).then((err) => {
1869 var remoteSupportLabels = ['A', 'B'];
1870 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
H A DDeviceKvStoreKVCallbackJsTest.js1057 var remoteSupportLabels = ['C', 'D'];
1058 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1080 var remoteSupportLabels = ['B', 'C'];
1081 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1103 var remoteSupportLabels = ['A', 'B'];
1104 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1125 var remoteSupportLabels = ['A', 'B'];
1126 kvStore.setSyncRange(remoteSupportLabels, function (err) {
H A DSingleKvStoreKVCallbackJsTest.js1100 var remoteSupportLabels = ['C', 'D'];
1101 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1123 var remoteSupportLabels = ['B', 'C'];
1124 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1146 var remoteSupportLabels = ['A', 'B'];
1147 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err, data) {
1168 var remoteSupportLabels = ['A', 'B'];
1169 kvStore.setSyncRange(remoteSupportLabels, function (err) {
/ohos5.0/base/notification/distributed_notification_service/services/ans/test/unittest/mock/include/
H A Dmock_single_kv_store.h264 const std::vector<std::string> &remoteSupportLabels) const override;
/ohos5.0/base/notification/distributed_notification_service/services/distributed/test/unittest/mock/
H A Dmock_single_kv_store.h266 const std::vector<std::string> &remoteSupportLabels) const override;
H A Dmock_single_kv_store.cpp145 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/services/test/moduletest/mock/include/
H A Dmock_single_kv_store.h265 const std::vector<std::string> &remoteSupportLabels) const override;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/src/
H A Djs_kv_store.cpp417 std::vector<std::string> remoteSupportLabels; in SetSyncRange() member
425 ctxt->status = JSUtil::GetValue(env, argv[1], ctxt->remoteSupportLabels); in SetSyncRange()
432 Status status = kvStore->SetCapabilityRange(ctxt->localLabels, ctxt->remoteSupportLabels); in SetSyncRange()
/ohos5.0/base/notification/distributed_notification_service/services/ans/test/unittest/mock/
H A Dmock_single_kv_store.cpp144 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/services/distributed/test/unittest/distributed_database_branch_test/
H A Dmock_single_kv_store.cpp166 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/services/distributed/test/unittest/distributed_preferences_database_test/
H A Dmock_single_kv_store.cpp157 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/services/distributed/test/unittest/distributed_screen_status_manager_branch_test/
H A Dmock_single_kv_store.cpp159 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/services/test/moduletest/mock/
H A Dmock_single_kv_store.cpp145 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/base/notification/distributed_notification_service/frameworks/test/moduletest/mock/include/
H A Dmock_single_kv_store.h264 const std::vector<std::string> &remoteSupportLabels) const override;
/ohos5.0/foundation/distributeddatamgr/kv_store/test/unittest/distributeddata/
H A DDeviceKvStoreDataCallbackJsTest.js987 var remoteSupportLabels = ['C', 'D'];
988 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
1010 var remoteSupportLabels = ['B', 'C'];
1011 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
1033 var remoteSupportLabels = ['A', 'B'];
1034 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
H A DSingleKvStoreDataCallbackJsTest.js943 var remoteSupportLabels = ['C', 'D'];
944 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
966 var remoteSupportLabels = ['B', 'C'];
967 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
989 var remoteSupportLabels = ['A', 'B'];
990 await kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
H A DDeviceKvStoreDataPromiseJsTest.js1175 var remoteSupportLabels = ['C', 'D'];
1176 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
1200 var remoteSupportLabels = ['B', 'C'];
1201 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
1225 var remoteSupportLabels = ['A', 'B'];
1226 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
H A DSingleKvStoreDataPromiseJsTest.js1144 var remoteSupportLabels = ['C', 'D'];
1145 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
1169 var remoteSupportLabels = ['B', 'C'];
1170 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
1194 var remoteSupportLabels = ['A', 'B'];
1195 await kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-distributed-data.md53 …: string[], remoteSupportLabels: string[], callback: AsyncCallback\<void>): void;<br>setSyncRange(…
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-distributed-data.md53 …: string[], remoteSupportLabels: string[], callback: AsyncCallback\<void>): void;<br>setSyncRange(…
/ohos5.0/base/notification/distributed_notification_service/frameworks/test/moduletest/mock/
H A Dmock_single_kv_store.cpp253 …t std::vector<std::string> &localLabels, const std::vector<std::string> &remoteSupportLabels) const in SetCapabilityRange()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/
H A Djs_single_kv_store.cpp516 std::vector<std::string> remoteSupportLabels; in SetSyncRange() member
526 ctxt->status = JSUtil::GetValue(env, argv[1], ctxt->remoteSupportLabels); in SetSyncRange()
535 Status status = kvStore->SetCapabilityRange(ctxt->localLabels, ctxt->remoteSupportLabels); in SetSyncRange()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/
H A Djs-apis-distributed-data.md2845 setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback&lt;void&…
2856 | remoteSupportLabels |string[] | 是 |表示要同步数据的设备的同步标签。 |
2865 const remoteSupportLabels = ['C', 'D'];
2866 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
2877 setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise&lt;void&gt;
2888 | remoteSupportLabels |string[] | 是 |表示要同步数据的设备的同步标签。 |
2903 const remoteSupportLabels = ['C', 'D'];
2904 kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/
H A Djs-apis-distributed-data.md2845 setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback&lt;void&…
2856 | remoteSupportLabels |string[] | Yes |Sync labels set for remote devices. |
2865 const remoteSupportLabels = ['C', 'D'];
2866 kvStore.setSyncRange(localLabels, remoteSupportLabels, function (err,data) {
2877 setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise&lt;void&gt;
2888 | remoteSupportLabels |string[] | Yes |Sync labels set for remote devices. |
2903 const remoteSupportLabels = ['C', 'D'];
2904 kvStore.setSyncRange(localLabels, remoteSupportLabels).then((err) => {

12