Lines Matching refs:localPath
1648 void BuildErrorString(const char *localPath, const char *op, const char *err, string &str)
1653 str += localPath;
1659 bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, mode_t &fm)
1665 int r = uv_fs_lstat(nullptr, &req, localPath, nullptr);
1670 BuildErrorString(localPath, "lstat", buf, errStr);
1679 uv_fs_access(nullptr, &req, localPath, readWrite ? R_OK : W_OK, nullptr);
1685 BuildErrorString(localPath, op, buf, errStr);
1696 errStr += localPath;
1700 errStr += localPath;
1735 bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite)
1739 return CheckDirectoryOrPath(localPath, pathOrDir, readWrite, strUnused, mode);