Lines Matching refs:errno
68 LOGE("Error opening src file descriptor. errno = %{public}d", errno);
69 return errno;
88 LOGE("Failed to get stat of file by fd: %{public}d ,errno = %{public}d", srcFdg->GetFD(), errno);
89 return errno;
97 LOGE("Failed to sendfile by errno : %{public}d", errno);
98 return errno;
161 LOGI("stat failed, errno is %{public}d, ", errno);
173 return { errno, 0 };
211 LOGE("Error opening file descriptor. errno = %{public}d", errno);
242 return errno;
299 LOGE("stat failed, errno is %{public}d, path is %{public}s", errno, path.c_str());
432 LOGE("Error opening dest file descriptor. errno = %{public}d", errno);
434 return errno;
495 while (((len = read(infos->notifyFd, &buf, sizeof(buf))) < 0) && (errno == EINTR)) {}
544 } else if (ret < 0 && errno == EINTR) {
547 infos->exceptionCode = errno;
654 LOGE("Failed to subscribe local listener, errno = %{public}" PRIu64, ret);
665 LOGE("Failed to init inotify, errno:%{public}d", errno);
666 return errno;
670 LOGE("Failed to init eventFd, errno:%{public}d", errno);
671 return errno;
677 LOGE("Failed to add watch, errno = %{public}d, notifyFd: %{public}d, destPath: %{public}s",
678 errno, infos->notifyFd, infos->destPath.c_str());
680 return errno;