Lines Matching refs:stat
23 #include <sys/stat.h>
86 struct stat srcStat{};
88 LOGE("Failed to get stat of file by fd: %{public}d ,errno = %{public}d", srcFdg->GetFD(), errno);
158 struct stat buf {};
159 int ret = stat(path.c_str(), &buf);
161 LOGI("stat failed, errno is %{public}d, ", errno);
169 struct stat buf {};
170 int ret = stat(path.c_str(), &buf);
296 struct stat buf {};
297 int ret = stat(path.c_str(), &buf);
299 LOGE("stat failed, errno is %{public}d, path is %{public}s", errno, path.c_str());
340 struct stat st {};
341 if (stat(dest.c_str(), &st) == -1) {