summaryrefslogtreecommitdiffstats
path: root/minui/events.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* recovery: Handle EV_SW eventsAjay Dudani2015-02-111-2/+2
| | | | Change-Id: I29c13a941067cd1bbdced3bd67fd93293347d7b6
* Add missing includes.Elliott Hughes2015-01-301-0/+2
| | | | Change-Id: I06ea08400efa511e627be37a4fd70fbdfadea2e6
* recovery: fix epoll events type to uint32_tTodd Poynor2013-09-171-1/+1
| | | | Change-Id: I5db9987102201c18821acb45d1f824e9865a1451
* minui: add ev_get_epollfd() to retrieve epoll file descriptorTodd Poynor2013-09-121-0/+5
| | | | | | To allow use of ev_* functions with an external main loop. Change-Id: If73717b64d7c455ca726b90a815a31c1edf52544
* minui: convert ev_*() event interface to epollTodd Poynor2013-09-121-25/+56
| | | | | | | | | | | Help enable external main loop combined with ev_*() key event processing. Specify EPOLLWAKEUP to hold a wakelock on any event, assuming this is needed (may need to make this optional). Convert callback events parameter to unsigned int. Change-Id: Ib5e09abbd7724ffd830e2cf8e25e7eb59d3aa072
* minui: add ability to synchronize current key stateDima Zavin2011-10-131-2/+36
| | | | | | | | | | | If a key is down prior to the time of initialization, we would not get the down event for the key, and thus think that the key is not pressed. Add an interface that allows one to provide a callback to execute on all keys that are currently down. Change-Id: I2a4096c0cb4c7c7a9a80d207835f168a0b418413 Signed-off-by: Dima Zavin <dima@android.com>
* minui: events: only open input devices with EV_KEY and/or EV_RELDima Zavin2011-09-021-0/+17
| | | | | Change-Id: I8283d7aaa0f66d488f462cd108350cc49657a745 Signed-off-by: Dima Zavin <dima@android.com>
* minui: events: add ability to poll on non-input fdsDima Zavin2011-09-021-3/+22
| | | | | Change-Id: Iad52a6f2adcae0068d252d6163586f9d7b93121d Signed-off-by: Dima Zavin <dima@android.com>
* minui: events: refactor event acquisitionDima Zavin2011-09-021-13/+36
| | | | | | | | | | | | | | | | | | | | | | Events are now delivered through a callback mechanism during a call to ev_dispatch(). This will allow us to extend the events code to handle other devices/fds, not just input. One such example is the ability to process uevents. During initialization, we provide an input callback to ev_init that gets called when a new event is encountered during dispatch. ev_get has been removed and replaced with ev_get_input() helper function that can be called from inside the callback to attempt to get an input event. The existing client of ev_get in recovery has been split up such that the input thread just calls ev_wait(); ev_dispatch(); and the input_callback handles individual events by using the ev_get_input() helper. Change-Id: I24d8e71bd1533876b4ab1ae751ba200fea43c049 Signed-off-by: Dima Zavin <dima@android.com>
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-041-0/+82
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-041-82/+0
|
* Initial ContributionThe Android Open Source Project2008-10-211-0/+82