Lines Matching defs:errno
23 #include <errno.h>
65 ALOGE("Could not get linux version: %s", strerror(errno));
78 "Could not get process capabilities. errno=%d", errno);
159 ALOGE("could not open evdev device %s. err=%d", path.c_str(), errno);
171 ALOGW("Could not set input clock id to CLOCK_MONOTONIC. errno=%d", errno);
177 ALOGE("could not open evdev device %s: failed to read properties. errno=%d",
197 ALOGE("could not get driver version for %s. err=%d", mPath.c_str(), errno);
198 return -errno;
203 ALOGE("could not get device input id for %s. err=%d", mPath.c_str(), errno);
204 return -errno;
257 ALOGW("Error reading absolute controller %d for device %s fd %d, errno=%d",
258 axis, mPath.c_str(), mFd, errno);
364 ALOGW("Error reading absolute controller %d for device %s fd %d, errno=%d",
365 axis, mPath.c_str(), mFd, errno);
366 return -errno;
386 mPath.c_str(), errno);
398 mPath.c_str(), errno);
415 mPath.c_str(), errno);
425 mPath.c_str(), errno);
461 LOG_ALWAYS_FATAL_IF(mEpollFd < 0, "Could not create epoll instance. errno=%d", errno);
464 LOG_ALWAYS_FATAL_IF(mINotifyFd < 0, "Could not create inotify instance. errno=%d", errno);
474 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add INotify to epoll instance. errno=%d", errno);
478 LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno);
481 LOG_ALWAYS_FATAL_IF(mWakeEventFd == -1, "Could not create wake event fd. errno=%d", errno);
485 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake event fd to epoll instance. errno=%d", errno);
502 ALOGE("Could not add %s to INotify watch. errno=%d", path.c_str(), errno);
503 return -errno;
524 return -errno;
560 ALOGE("epoll_wait returned with errno=%d", errno);
561 return -errno;
612 if (readSize == 0 || (readSize < 0 && errno == ENODEV)) {
613 ALOGW("could not get event, removed? (fd: %d, size: %zd errno: %d)",
614 inputFd, readSize, errno);
619 if (errno != EAGAIN && errno != EINTR) {
620 ALOGW("could not get event. errno=%d", errno);
651 ALOGW("Could not close device with fd %d. errno=%d", deviceFd, ret);
672 if (nWrite != sizeof(uint64_t) && errno != EAGAIN) {
673 ALOGW("Could not write wake signal, errno=%d", errno);
674 return -errno;
689 ALOGW("could not get inotify event, %s\n", strerror(errno));
690 return -errno;
714 ALOGW("Could not close device %s. errno=%d", path.c_str(), ret);
734 ALOGE("could not open device path %s to scan for devices. err=%d", path.c_str(), errno);
735 return -errno;
772 ALOGE("Could not add device fd to epoll instance. errno=%d", errno);
810 ALOGW("Could not remove device fd from epoll instance. errno=%d", errno);
811 ret = -errno;