/base/notification/eventhandler/frameworks/eventhandler/test/unittest/ |
H A D | lib_event_epoll_io_waiter_test.cpp | 105 listener, EventQueue::Priority::HIGH); in HWTEST_F() 127 listener, EventQueue::Priority::HIGH); in HWTEST_F() 149 listener, EventQueue::Priority::HIGH); in HWTEST_F()
|
H A D | lib_event_handler_event_queue_test.cpp | 262 queue.Insert(event, EventQueue::Priority::HIGH); in InsertPriorityEvent() 291 queue.Insert(event, EventQueue::Priority::HIGH); in InsertAllPriorityEvent() 512 EventQueue::Priority::HIGH, in HWTEST_F() 539 EventQueue::Priority::HIGH, in HWTEST_F() 602 queue.Insert(event, EventQueue::Priority::HIGH); in HWTEST_F() 1901 queue.Insert(event, EventQueue::Priority::HIGH); in HWTEST_F() 1905 * @tc.steps: step2. check whether there are higher priority than HIGH in event queue in HWTEST_F() 1908 bool hasPreferEvent1 = queue.HasPreferEvent(static_cast<int>(EventQueue::Priority::HIGH)); in HWTEST_F() 1935 queue.Insert(event, EventQueue::Priority::HIGH); in HWTEST_F()
|
/base/notification/eventhandler/frameworks/test/moduletest/ |
H A D | event_handler_send_event_module_test.cpp | 47 * Function: Send an event with HIGH or IMMEDIATE priority, and chen check the processed result. 60 if (priority == EventQueue::Priority::HIGH) { in SendEventWithPriority() 86 * @tc.steps: step1. Set event by event id with different priority (LOW, HIGH, IMMEDIATE). in SendEventWithPriorityByEventId() 97 if (priority == EventQueue::Priority::HIGH) { in SendEventWithPriorityByEventId() 128 if (priority == EventQueue::Priority::HIGH) { in SendEventWithSharedOrWeakPtr() 158 case EventQueue::Priority::HIGH: { in SendEventWithUniquePtr() 302 * @tc.desc: Send event with priority = HIGH 309 * @tc.steps: step1. Send event with HIGH priority. in HWTEST_F() 313 SendAndCheck(delayTime, EventQueue::Priority::HIGH); in HWTEST_F() 495 SendEventWithPriority(EventQueue::Priority::HIGH); in HWTEST_F() [all...] |
H A D | event_handler_send_sync_event_module_test.cpp | 215 bool result = handler->SendSyncEvent(event, EventQueue::Priority::HIGH); in HWTEST_F() 384 bool result = handler->PostSyncTask(myTask, EventQueue::Priority::HIGH); in HWTEST_F()
|
H A D | event_handler_set_get_remove_module_test.cpp | 278 handler->PostTask(f, delayTime, EventQueue::Priority::HIGH); in HWTEST_F()
|
H A D | event_handler_post_task_module_test.cpp | 92 bool postResult = handler->PostTask(f, delayTime, EventQueue::Priority::HIGH); in HWTEST_F()
|
/base/powermgr/power_manager/interfaces/inner_api/native/include/shutdown/ |
H A D | shutdown_priority.h | 30 HIGH, member in OHOS::PowerMgr::ShutdownPriority
|
/base/powermgr/power_manager/interfaces/inner_api/native/include/suspend/ |
H A D | sleep_priority.h | 27 HIGH, member in OHOS::PowerMgr::SleepPriority
|
/base/powermgr/power_manager/test/apitest/inner_api/shutdown/ |
H A D | sync_shutdown_callback_test.cpp | 158 g_service->RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F() 177 g_service->RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F()
|
H A D | async_shutdown_callback_test.cpp | 190 g_service->RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F() 209 g_service->RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F()
|
H A D | takeover_shutdown_callback_test.cpp | 154 shutdownClient.RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F() 176 shutdownClient.RegisterShutdownCallback(highPriorityCallback, ShutdownPriority::HIGH); in HWTEST_F()
|
/base/update/updateservice/services/startup/model/include/ |
H A D | startup_constant.h | 35 HIGH = 2, member in OHOS::UpdateEngine::TaskPriority
|
/base/notification/eventhandler/test/fuzztest/noneiowaiter_fuzzer/ |
H A D | noneiowaiter_fuzzer.cpp | 56 listener, AppExecFwk::EventQueue::Priority::HIGH);
in DoSomethingInterestingWithMyAPI()
|
/base/telephony/core_service/utils/common/src/ |
H A D | tel_event_queue.cpp | 24 enum class TelPriority : uint32_t { IMMEDIATE = 0, HIGH, LOW }; member in OHOS::Telephony::__anon3717::TelPriority 78 if (priority == AppExecFwk::EventQueue::Priority::HIGH) { in ToTelPriority() 79 return static_cast<uint32_t>(TelPriority::HIGH); in ToTelPriority()
|
/base/powermgr/power_manager/services/native/src/shutdown/ |
H A D | shutdown_callback_holer.cpp | 47 case ShutdownPriority::HIGH: { in AddCallback()
|
/base/powermgr/power_manager/services/native/src/suspend/ |
H A D | sleep_callback_holder.cpp | 36 case SleepPriority::HIGH: { in AddCallback()
|
/base/notification/eventhandler/interfaces/inner_api/ |
H A D | event_queue.h | 115 HIGH, member in OHOS::AppExecFwk::EventQueue::Priority 197 Priority priority = Priority::HIGH) = 0;
|
H A D | event_handler.h | 329 return SendEvent(event, delayTime, Priority::HIGH); in SendHighPriorityEvent() 525 return PostTask(callback, name, delayTime, Priority::HIGH, caller);
|
/base/notification/eventhandler/test/systemtest/ems_event_handler_system_test/ |
H A D | ems_event_handler_test.cpp | 860 handler->SendEvent(event, TestEventHandler::Priority::HIGH); in HWTEST_F() 1118 handler->SendEvent(event, DELAY_TIME, TestEventHandler::Priority::HIGH); in HWTEST_F() 1232 handler->SendEvent(EVENT_ID, TestEventHandler::Priority::HIGH); in HWTEST_F() 1318 handler->SendEvent(EVENT_ID, FLAG_FOUR, TestEventHandler::Priority::HIGH); in HWTEST_F() 1408 handler->SendSyncEvent(EVENT_ID, TestEventHandler::Priority::HIGH); in HWTEST_F() 1582 handler->SendSyncEvent(EVENT_ID_FOUR, TestEventHandler::Priority::HIGH); in HWTEST_F() 1910 handler->SendEvent(event, DELAY_TIME, TestEventHandler::Priority::HIGH); in HWTEST_F() 1999 if (handler->PostTask(f, DELAY_TIME, EventHandler::Priority::HIGH)) { in HWTEST_F() 2113 handler->SendEvent(event, DELAY_TIME, EventHandler::Priority::HIGH); in HWTEST_F() 2199 handler->SendEvent(event, DELAY_TIME, EventHandler::Priority::HIGH); in HWTEST_F() [all...] |
/base/notification/eventhandler/frameworks/eventhandler/include/ |
H A D | event_queue_ffrt.h | 167 Priority priority = Priority::HIGH) override;
|
H A D | event_queue_base.h | 218 Priority priority = Priority::HIGH) override; 287 // Sub event queues for IMMEDIATE, HIGH and LOW priority. So use value of IDLE as size.
|
/base/hiviewdfx/hiview/plugins/usage_event_report/ |
H A D | usage_event_report.cpp | 157 PowerMgr::ShutdownPriority::HIGH);
in InitCallback()
|
/base/telephony/core_service/test/fuzztest/sendenvelopecmd_fuzzer/ |
H A D | sendenvelopecmd_fuzzer.cpp | 220 handler->SendEvent(0, 0, AppExecFwk::EventQueue::Priority::HIGH); in DoSomethingInterestingWithMyAPI()
|
/base/telephony/core_service/test/fuzztest/updateiccdiallingnumbers_fuzzer/ |
H A D | updateiccdiallingnumbers_fuzzer.cpp | 201 handler->SendEvent(0, 0, AppExecFwk::EventQueue::Priority::HIGH); in DoSomethingInterestingWithMyAPI()
|
/base/telephony/call_manager/interfaces/innerkits/ |
H A D | call_manager_inner_type.h | 639 HIGH = 1, enumerator
|