Lines Matching refs:errno
28 ALOGE("Failed to create event fd because: %s\n", strerror(errno)); in ServiceDispatcher()
34 ALOGE("Failed to create epoll fd because: %s\n", strerror(errno)); in ServiceDispatcher()
45 ALOGE("Failed to add event fd to epoll fd because: %s\n", strerror(errno)); in ServiceDispatcher()
80 ALOGE("Failed to add service to dispatcher because: %s\n", strerror(errno)); in AddService()
81 return -errno; in AddService()
99 strerror(errno)); in RemoveService()
100 return -errno; in RemoveService()
120 strerror(errno)); in ReceiveAndDispatch()
122 return count < 0 ? -errno : -ETIMEDOUT; in ReceiveAndDispatch()
151 if (count < 0 && errno != EINTR) { in EnterDispatchLoop()
152 ALOGE("Failed to wait for epoll events because: %s\n", strerror(errno)); in EnterDispatchLoop()
154 return -errno; in EnterDispatchLoop()