Home
last modified time | relevance | path

Searched refs:isOrdered (Results 1 – 25 of 32) sorted by relevance

12

/ohos5.0/base/notification/common_event_service/services/src/
H A Dcommon_event_sticky_manager.cpp128 std::string isOrdered; in DumpState() local
130 isOrdered = "\tIsOrdered: true\n"; in DumpState()
132 isOrdered = "\tIsOrdered: false\n"; in DumpState()
165 …d::string dumpInfo = no + recordTime + pid + uid + bundleName + permission + isSticky + isOrdered + in DumpState()
H A Dcommon_event_control_manager.cpp1042 std::string isOrdered; in DumpStateByCommonEventRecord() local
1044 isOrdered = "\tIsOrdered: true\n"; in DumpStateByCommonEventRecord()
1046 isOrdered = "\tIsOrdered: false\n"; in DumpStateByCommonEventRecord()
1105 …dumpInfo = recordTime + pid + uid + userId + bundleName + permission + isSticky + isOrdered + isSy… in DumpStateByCommonEventRecord()
1156 std::string isOrdered; in DumpHistoryStateByCommonEventRecord() local
1158 isOrdered = "\tIsOrdered: true\n"; in DumpHistoryStateByCommonEventRecord()
1160 isOrdered = "\tIsOrdered: false\n"; in DumpHistoryStateByCommonEventRecord()
1219 …dumpInfo = recordTime + pid + uid + userId + bundleName + permission + isSticky + isOrdered + isSy… in DumpHistoryStateByCommonEventRecord()
/ohos5.0/base/notification/common_event_service/tools/cem/src/
H A Dcommon_event_command.cpp84 publishInfo.SetOrdered(cmdInfo.isOrdered); in RunAsPublishCommand()
120 cmdInfo.isOrdered = true; in SetPublishCmdInfo()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/
H A Djs-apis-inner-commonEvent-commonEventPublishData.md21 | isOrdered | boolean | 否 | 是 | 表示是否是有序事件。 |
H A Djs-apis-inner-commonEvent-commonEventSubscriber.md582 function isOrderedCommonEventCallback(err: BusinessError, isOrdered:boolean) {
586 console.info("isOrderedCommonEvent " + JSON.stringify(isOrdered));
609 subscriber.isOrderedCommonEvent().then((isOrdered:boolean) => {
610 console.info("isOrderedCommonEvent " + JSON.stringify(isOrdered));
633 let isOrdered = subscriber.isOrderedCommonEventSync();
634 console.info("isOrderedCommonEventSync " + JSON.stringify(isOrdered));
H A Djs-apis-commonEvent.md88 isOrdered: true //有序公共事件
H A Djs-apis-commonEventManager.md109 isOrdered: true // 有序公共事件
/ohos5.0/base/notification/common_event_service/interfaces/kits/cj/src/
H A Dcommon_event_defination.h38 bool isOrdered; member
H A Dcommon_event_manager_impl.cpp56 publishInfo.SetOrdered(options.isOrdered); in PublishEventWithData()
/ohos5.0/base/location/services/location_ui/entry/src/main/ets/pages/
H A DWifiDialog.ets93 isOrdered: true,
119 isOrdered: true,
/ohos5.0/base/notification/common_event_service/tools/cem/include/
H A Dcommon_event_command.h64 bool isOrdered = false; member
/ohos5.0/docs/zh-cn/application-dev/basic-services/common-event/
H A Dcommon-event-publish.md53 …-basic-services-kit/js-apis-inner-commonEvent-commonEventPublishData.md)的isOrdered、isSticky的字段进行设置。
/ohos5.0/base/notification/common_event_service/interfaces/kits/napi/common_event/include/
H A Dcommon_event.h92 bool isOrdered = false; member
197 bool isOrdered = false; member
388 napi_value GetIsOrderedByPublish(const napi_env &env, const napi_value &value, bool &isOrdered);
/ohos5.0/base/notification/common_event_service/interfaces/kits/napi/common_event/src/
H A Dcommon_event_parse.cpp724 napi_value GetIsOrderedByPublish(const napi_env &env, const napi_value &value, bool &isOrdered) in GetIsOrderedByPublish() argument
740 napi_get_value_bool(env, result, &isOrdered); in GetIsOrderedByPublish()
838 if (GetIsOrderedByPublish(env, argv[1], commonEventPublishData.isOrdered) == nullptr) { in ParseParametersByPublish()
880 asyncCallbackInfo->commonEventPublishInfo.SetOrdered(commonEventPublishDatajs.isOrdered); in PaddingCallbackInfoPublish()
941 …redByPublish(env, argv[COMMON_EVENT_PUBLISH_PARAM], commonEventPublishData.isOrdered) == nullptr) { in ParseParametersByPublishAsUser()
H A Dcommon_event.cpp432 asyncCallbackInfo->isOrdered = asyncResult->IsOrderedCommonEvent(); in IsOrderedCommonEvent()
434 … asyncCallbackInfo->isOrdered = asyncCallbackInfo->subscriber->IsOrderedCommonEvent(); in IsOrderedCommonEvent()
446 napi_get_boolean(env, asyncCallbackInfo->isOrdered, &result); in IsOrderedCommonEvent()
/ohos5.0/base/notification/common_event_service/interfaces/kits/napi/napi_common_event/include/
H A Dnapi_common_event.h107 bool isOrdered = false; member
212 bool isOrdered = false; member
412 napi_value GetIsOrderedByPublish(const napi_env &env, const napi_value &value, bool &isOrdered);
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A Djs-apis-inner-commonEvent-commonEventPublishData.md21 | isOrdered | boolean | No | Yes | Whether the common event is an ordered …
H A Djs-apis-inner-commonEvent-commonEventSubscriber.md510 function isOrderedCommonEventCallback(err: BusinessError, isOrdered:boolean) {
514 console.info("isOrderedCommonEvent " + JSON.stringify(isOrdered));
537 subscriber.isOrderedCommonEvent().then((isOrdered:boolean) => {
538 console.info("isOrderedCommonEvent " + JSON.stringify(isOrdered));
561 let isOrdered = subscriber.isOrderedCommonEventSync();
562 console.info("isOrderedCommonEventSync " + JSON.stringify(isOrdered));
H A Djs-apis-commonEvent.md88 isOrdered: true // The common event is an ordered one.
/ohos5.0/base/notification/common_event_service/
H A DREADME_zh.md114 | isOrdered | 只读 | bool | 否 | 表示是否是有序公共事件 |
128 isOrdered: false
369 isOrdered: true
/ohos5.0/base/notification/common_event_service/interfaces/kits/napi/napi_common_event/src/
H A Dnapi_common_event.cpp950 bool isOrdered = false; in IsOrderedCommonEventSync() local
954 isOrdered = asyncResult->IsOrderedCommonEvent(); in IsOrderedCommonEventSync()
956 isOrdered = subscriber->IsOrderedCommonEvent(); in IsOrderedCommonEventSync()
960 napi_get_boolean(env, isOrdered, &result); in IsOrderedCommonEventSync()
1337 asyncCallbackInfo->isOrdered = asyncResult->IsOrderedCommonEvent(); in IsOrderedCommonEvent()
1339 … asyncCallbackInfo->isOrdered = asyncCallbackInfo->subscriber->IsOrderedCommonEvent(); in IsOrderedCommonEvent()
1349 napi_get_boolean(env, asyncCallbackInfo->isOrdered, &result); in IsOrderedCommonEvent()
H A Dcommon_event_parse.cpp871 napi_value GetIsOrderedByPublish(const napi_env &env, const napi_value &value, bool &isOrdered) in GetIsOrderedByPublish() argument
889 napi_get_value_bool(env, result, &isOrdered); in GetIsOrderedByPublish()
995 if (GetIsOrderedByPublish(env, argv[1], commonEventPublishData.isOrdered) == nullptr) { in ParseParametersByPublish()
1038 asyncCallbackInfo->commonEventPublishInfo.SetOrdered(commonEventPublishDatajs.isOrdered); in PaddingCallbackInfoPublish()
1104 …if (GetIsOrderedByPublish(env, argv[ARGS_DATA_TWO], commonEventPublishData.isOrdered) == nullptr) { in ParseParametersByPublishAsUser()
/ohos5.0/docs/zh-cn/application-dev/faqs/
H A Dfaqs-event-notification.md85 isOrdered: true //有序公共事件
/ohos5.0/docs/en/application-dev/basic-services/common-event/
H A Dcommon-event-publish.md53 …rdered, ordered, and sticky common events, which are specified by the **isOrdered** and **isSticky…
/ohos5.0/docs/en/application-dev/faqs/
H A Dfaqs-event-notification.md85 isOrdered: true // The common event is an ordered one.

12