Home
last modified time | relevance | path

Searched refs:subEventQueues_ (Results 1 – 2 of 2) sorted by relevance

/base/notification/eventhandler/frameworks/eventhandler/src/
Devent_queue.cpp120 InsertEventsLocked(subEventQueues_[static_cast<uint32_t>(priority)].queue, event); in Insert()
167 subEventQueues_[i].queue.clear(); in RemoveAll()
234 subEventQueues_[i].queue.remove_if(filter); in Remove()
271 std::find_if(subEventQueues_[i].queue.begin(), subEventQueues_[i].queue.end(), filter); in HasInnerEvent()
272 if (iter != subEventQueues_[i].queue.end()) { in HasInnerEvent()
285 if (!CheckEventInListLocked(subEventQueues_[i].queue, now, nextWakeUpTime)) { in PickEventLocked()
291 SubEventQueue &subQueue = subEventQueues_[priorityIndex]; in PickEventLocked()
310 subEventQueues_[i].handledEventsCount = 0; in PickEventLocked()
313 return PopFrontEventFromListLocked(subEventQueues_[priorityIndex].queue); in PickEventLocked()
595 … for (auto it = subEventQueues_[i].queue.begin(); it != subEventQueues_[i].queue.end(); ++it) { in Dump()
[all …]
/base/notification/eventhandler/interfaces/inner_api/
Devent_queue.h258 std::array<SubEventQueue, SUB_EVENT_QUEUE_NUM> subEventQueues_; variable