Lines Matching defs:path
38 static bool PathToRealFileUrl(const std::string_view &path, std::string &realPath)
40 CHECK_AND_RETURN_RET_LOG(!path.empty(), false, "path is empty!");
41 CHECK_AND_RETURN_RET_LOG(path.length() < PATH_MAX, false,
42 "path len is error, the len is: [%{public}zu]", path.length());
45 char *pathAddr = realpath(path.data(), tmpPath);
47 "path to realpath error, %{public}s", path.data());
218 "Fail to access path: %{public}s", rawFileUri_.data());