Lines Matching refs:resolvedPath
768 string resolvedPath = CanonicalizeSpecPath(srcPath); in ReadBinFile() local
771 int fd = uv_fs_open(nullptr, &req, resolvedPath.c_str(), O_RDONLY, 0, nullptr); in ReadBinFile()
775 … WRITE_LOG(LOG_FATAL, "ReadBinFile uv_fs_open %s error %s", resolvedPath.c_str(), buffer); in ReadBinFile()
785 resolvedPath.c_str(), buffer, byteIO, readMax); in ReadBinFile()
805 string resolvedPath; in WriteBinFile() local
814 resolvedPath = srcPath.c_str(); in WriteBinFile()
817 resolvedPath = CanonicalizeSpecPath(srcPath); in WriteBinFile()
820 int fd = uv_fs_open(nullptr, &req, resolvedPath.c_str(), flags, S_IWUSR | S_IRUSR, nullptr); in WriteBinFile()
825 … WRITE_LOG(LOG_FATAL, "WriteBinFile uv_fs_open %s error %s", resolvedPath.c_str(), buffer); in WriteBinFile()
837 resolvedPath.c_str(), buffer, bytesDone, bufLen); in WriteBinFile()
1449 char resolvedPath[PATH_MAX] = { 0 }; in CanonicalizeSpecPath() local
1451 if (!_fullpath(resolvedPath, src.c_str(), PATH_MAX)) { in CanonicalizeSpecPath()
1456 if (realpath(src.c_str(), resolvedPath) == nullptr) { in CanonicalizeSpecPath()
1461 string res(resolvedPath); in CanonicalizeSpecPath()