Home | History | Annotate | Download | only in inputflinger

Lines Matching defs:wake

209     LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe.  errno=%d", errno);
215 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake read pipe non-blocking. errno=%d",
219 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake write pipe non-blocking. errno=%d",
224 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d",
808 ALOGV("awoken after wake()");
816 ALOGW("Received unexpected epoll event 0x%08x for wake read pipe.",
976 // Poll for events. Mind the wake lock dance!
977 // We hold a wake lock at all times except during epoll_wait(). This works due to some
979 // a kernel wake lock. However, once the last pending event has been read, the device
980 // driver will release the kernel wake lock. To prevent the system from going to sleep
981 // when this happens, the EventHub holds onto its own user wake lock while the client
985 // The timeout is advisory only. If the device is asleep, it will not wake just to
1023 void EventHub::wake() {
1024 ALOGV("wake() called");
1032 ALOGW("Could not write wake signal, errno=%d", errno);