Lines Matching defs:resolvedPath
1251 string resolvedPath = CanonicalizeSpecPath(srcPath);
1254 int fd = uv_fs_open(nullptr, &req, resolvedPath.c_str(), O_RDONLY, 0, nullptr);
1258 WRITE_LOG(LOG_FATAL, "ReadBinFile uv_fs_open %s error %s", resolvedPath.c_str(), buffer);
1268 resolvedPath.c_str(), buffer, byteIO, readMax);
1288 string resolvedPath;
1297 resolvedPath = srcPath.c_str();
1300 resolvedPath = CanonicalizeSpecPath(srcPath);
1303 int fd = uv_fs_open(nullptr, &req, resolvedPath.c_str(), flags, S_IWUSR | S_IRUSR, nullptr);
1308 WRITE_LOG(LOG_FATAL, "WriteBinFile uv_fs_open %s error %s", resolvedPath.c_str(), buffer);
1320 resolvedPath.c_str(), buffer, bytesDone, bufLen);
1960 char resolvedPath[PATH_MAX] = { 0 };
1962 if (!_fullpath(resolvedPath, src.c_str(), PATH_MAX)) {
1967 if (realpath(src.c_str(), resolvedPath) == nullptr) {
1972 string res(resolvedPath);
2377 wchar_t resolvedPath[PATH_MAX + 1] = { 0 };
2382 if (!_wfullpath(resolvedPath, wideFileName.c_str(), PATH_MAX + 1)) {
2386 return _wfopen(resolvedPath, wideMode.c_str());