Home
last modified time | relevance | path

Searched refs:eventQueue_ (Results 1 - 8 of 8) sorted by relevance

/foundation/window/window_manager_lite/services/ims/
H A Dinput_manager_service.cpp25 std::queue<RawEvent> InputManagerService::eventQueue_; member in OHOS::InputManagerService
66 while (eventQueue_.size() == MAX_EVENT_SIZE) { in ReadCallback()
70 eventQueue_.push(event[0]); in ReadCallback()
80 while (eventQueue_.size() == 0) { in Distribute()
85 int32_t len = (eventQueue_.size() > MAX_EVENT_SIZE) ? MAX_EVENT_SIZE : eventQueue_.size(); in Distribute()
87 events[i] = eventQueue_.front(); in Distribute()
88 eventQueue_.pop(); in Distribute()
H A Dinput_manager_service.h91 static std::queue<RawEvent> eventQueue_; member in OHOS::InputManagerService
/foundation/multimodalinput/input/service/event_dump/src/
H A Devent_statistic.cpp36 std::queue<std::string> EventStatistic::eventQueue_;
92 eventQueue_.push(eventStr); in PushEvent()
100 if (eventQueue_.empty()) { in PopEvent()
101 queueCondition_.wait(lock, []() { return !eventQueue_.empty(); }); in PopEvent()
103 std::string eventStr = eventQueue_.front(); in PopEvent()
104 eventQueue_.pop(); in PopEvent()
/foundation/multimedia/media_foundation/engine/scene/player/standard/
H A Dhiplayer_callback_looper.cpp50 eventQueue_.Quit(); in Stop()
77 eventQueue_.Enqueue(std::make_shared<Event>(WHAT_MEDIA_PROGRESS, SteadyClock::GetCurrentTimeMs(), Plugin::Any())); in StartReportMediaProgress()
82 eventQueue_.Enqueue(std::make_shared<Event>(WHAT_MEDIA_PROGRESS, SteadyClock::GetCurrentTimeMs(), Plugin::Any())); in ManualReportMediaProgressOnce()
104 eventQueue_.Enqueue(std::make_shared<Event>(WHAT_MEDIA_PROGRESS, in DoReportMediaProgress()
111 eventQueue_.Enqueue(std::make_shared<HiPlayerCallbackLooper::Event>(WHAT_ERROR, SteadyClock::GetCurrentTimeMs(), in OnError()
128 eventQueue_.Enqueue(std::make_shared<HiPlayerCallbackLooper::Event>(WHAT_INFO, SteadyClock::GetCurrentTimeMs(), in OnInfo()
145 auto item = eventQueue_.Next(); in LoopOnce()
H A Dhiplayer_callback_looper.h81 EventQueue eventQueue_ {};
/foundation/multimodalinput/input/service/event_dump/test/
H A Devent_statistic_test.cpp94 eventStatistic.eventQueue_.push("event1"); in HWTEST_F()
95 eventStatistic.eventQueue_.push("event2"); in HWTEST_F()
96 eventStatistic.eventQueue_.push("event3"); in HWTEST_F()
/foundation/multimodalinput/input/service/event_dump/include/
H A Devent_statistic.h56 static std::queue<std::string> eventQueue_; member in OHOS::MMI::final
/foundation/multimodalinput/input/service/event_resample/test/
H A Devent_resample_test.cpp287 std::queue<InputEvt> eventQueue_; member in OHOS::MMI::EventResampleTest
415 eventQueue_.push(std::move(touchDown)); in DoTest()
428 eventQueue_.push(std::move(touchMove)); in DoTest()
446 while (!eventQueue_.empty()) { in ReadQueue()
447 InputEvt &event = eventQueue_.front(); in ReadQueue()
465 eventQueue_.pop(); in ReadQueue()

Completed in 4 milliseconds