Lines Matching refs:errno

65         ALOGE("Could not get linux version: %s", strerror(errno));  in getLinuxRelease()
78 "Could not get process capabilities. errno=%d", errno); in processHasCapability()
159 ALOGE("could not open evdev device %s. err=%d", path.c_str(), errno); in openDeviceNode()
171 ALOGW("Could not set input clock id to CLOCK_MONOTONIC. errno=%d", errno); in openDeviceNode()
197 ALOGE("could not get driver version for %s. err=%d", mPath.c_str(), errno); in queryProperties()
198 return -errno; in queryProperties()
203 ALOGE("could not get device input id for %s. err=%d", mPath.c_str(), errno); in queryProperties()
204 return -errno; in queryProperties()
258 axis, mPath.c_str(), mFd, errno); in queryAxisInfo()
365 axis, mPath.c_str(), mFd, errno); in getAbsoluteAxisValue()
366 return -errno; in getAbsoluteAxisValue()
386 mPath.c_str(), errno); in vibrate()
398 mPath.c_str(), errno); in vibrate()
415 mPath.c_str(), errno); in cancelVibrate()
425 mPath.c_str(), errno); in disableDriverKeyRepeat()
461 LOG_ALWAYS_FATAL_IF(mEpollFd < 0, "Could not create epoll instance. errno=%d", errno); in InputHub()
464 LOG_ALWAYS_FATAL_IF(mINotifyFd < 0, "Could not create inotify instance. errno=%d", errno); in InputHub()
474 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add INotify to epoll instance. errno=%d", errno); in InputHub()
478 LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno); in InputHub()
481 LOG_ALWAYS_FATAL_IF(mWakeEventFd == -1, "Could not create wake event fd. errno=%d", errno); in InputHub()
485 …LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake event fd to epoll instance. errno=%d", errno); in InputHub()
502 ALOGE("Could not add %s to INotify watch. errno=%d", path.c_str(), errno); in registerDevicePath()
503 return -errno; in registerDevicePath()
524 return -errno; in unregisterDevicePath()
560 ALOGE("epoll_wait returned with errno=%d", errno); in poll()
561 return -errno; in poll()
612 if (readSize == 0 || (readSize < 0 && errno == ENODEV)) { in poll()
614 inputFd, readSize, errno); in poll()
619 if (errno != EAGAIN && errno != EINTR) { in poll()
620 ALOGW("could not get event. errno=%d", errno); in poll()
672 if (nWrite != sizeof(uint64_t) && errno != EAGAIN) { in wake()
673 ALOGW("Could not write wake signal, errno=%d", errno); in wake()
674 return -errno; in wake()
689 ALOGW("could not get inotify event, %s\n", strerror(errno)); in readNotify()
690 return -errno; in readNotify()
734 ALOGE("could not open device path %s to scan for devices. err=%d", path.c_str(), errno); in scanDir()
735 return -errno; in scanDir()
772 ALOGE("Could not add device fd to epoll instance. errno=%d", errno); in openNode()
810 ALOGW("Could not remove device fd from epoll instance. errno=%d", errno); in closeNodeByFd()
811 ret = -errno; in closeNodeByFd()