Lines Matching refs:localPath
1154 void BuildErrorString(const char *localPath, const char *op, const char *err, string &str) in BuildErrorString() argument
1159 str += localPath; in BuildErrorString()
1165 …bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, m… in CheckDirectoryOrPath() argument
1171 int r = uv_fs_lstat(nullptr, &req, localPath, nullptr); in CheckDirectoryOrPath()
1176 BuildErrorString(localPath, "lstat", buf, errStr); in CheckDirectoryOrPath()
1185 uv_fs_access(nullptr, &req, localPath, readWrite ? R_OK : W_OK, nullptr); in CheckDirectoryOrPath()
1191 BuildErrorString(localPath, op, buf, errStr); in CheckDirectoryOrPath()
1202 errStr += localPath; in CheckDirectoryOrPath()
1206 errStr += localPath; in CheckDirectoryOrPath()
1241 bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite) in CheckDirectoryOrPath() argument
1245 return CheckDirectoryOrPath(localPath, pathOrDir, readWrite, strUnused, mode); in CheckDirectoryOrPath()