Searched refs:mEvents (Results 1 - 2 of 2) sorted by relevance

/system/chre/core/
H A Devent_loop.cc104 // event queue mEvents (potentially posted from another thread), then within
109 if (!havePendingEvents || !mEvents.empty()) {
110 if (mEvents.size() > mMaxEventPoolUsage) {
111 mMaxEventPoolUsage = mEvents.size();
114 // mEvents.pop() will be a blocking call if mEvents.empty()
115 distributeEvent(mEvents.pop());
120 mPowerControlManager.postEventLoopProcess(mEvents.size());
129 while (!mEvents.empty()) {
130 freeEvent(mEvents
[all...]
/system/chre/core/include/chre/core/
H A Devent_loop.h292 FixedSizeBlockingQueue<Event *, kMaxUnscheduledEventCount> mEvents; member in class:chre::EventLoop
323 * Nanoapps' own queues (not mEvents).
339 * Given an event pulled from the main incoming event queue (mEvents), deliver

Completed in 60 milliseconds