HomeSort by relevance Sort by last modified time
    Searched defs:epollfd (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/core/jni/
com_android_server_AlarmManagerService.cpp 77 AlarmImpl(const TimerFds &fds, int epollfd, int rtc_id) :
78 fds{fds}, epollfd{epollfd}, rtc_id{rtc_id} { }
87 const int epollfd; member in class:android::AlarmImpl
94 epoll_ctl(epollfd, EPOLL_CTL_DEL, fd, nullptr);
98 close(epollfd);
176 int nevents = epoll_wait(epollfd, events, N_ANDROID_TIMERFDS, -1);
329 int epollfd; local
332 epollfd = epoll_create(fds.size());
333 if (epollfd < 0)
    [all...]
  /system/core/healthd/
healthd_common.cpp 73 static int epollfd; variable
100 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &ev) == -1) {
250 nevents = epoll_wait(epollfd, events, eventct, timeout);
268 epollfd = epoll_create(MAX_EPOLL_EVENTS);
269 if (epollfd == -1) {
healthd_mode_charger.cpp 619 int epollfd; local
627 epollfd = ev_get_epollfd();
628 healthd_register_event(epollfd, charger_event_handler, EVENT_WAKEUP_FD);
  /external/wpa_supplicant_8/src/utils/
eloop.c 92 int epollfd; member in struct:eloop_data
166 eloop.epollfd = epoll_create1(0);
167 if (eloop.epollfd < 0) {
216 if (epoll_ctl(eloop.epollfd, EPOLL_CTL_ADD, sock, &ev) < 0) {
406 if (epoll_ctl(eloop.epollfd, EPOLL_CTL_DEL, sock, NULL) < 0) {
1141 res = epoll_wait(eloop.epollfd, eloop.epoll_events,
1285 close(eloop.epollfd);
    [all...]
  /system/core/lmkd/
lmkd.c 95 static int epollfd; variable
460 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, ctrl_dfd, &epev) == -1) {
780 ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, evfd, &epev);
819 epollfd = epoll_create(MAX_EPOLL_EVENTS);
820 if (epollfd == -1) {
839 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, ctrl_lfd, &epev) == -1) {
872 nevents = epoll_wait(epollfd, events, maxevents, -1);

Completed in 289 milliseconds