Lines Matching refs:normPath
1156 auto normPath = path::normalize(path); in normalizePathToStorageLocked() local
1157 if (path::startsWith(normPath, storageIt->second.name)) { in normalizePathToStorageLocked()
1158 return normPath; in normalizePathToStorageLocked()
1161 const auto bindIt = findParentPath(incfs.bindPoints, normPath); in normalizePathToStorageLocked()
1165 return path::join(bindIt->second.sourceDir, path::relativize(bindIt->first, normPath)); in normalizePathToStorageLocked()
1196 const std::string normPath = normalizePathToStorage(*ifs, storage, path); in makeFile() local
1197 if (normPath.empty()) { in makeFile()
1201 if (auto err = mIncFs->makeFile(ifs->control, normPath, mode, id, params); err) { in makeFile()
1202 LOG(ERROR) << "Internal error: storageId " << storage << " failed to makeFile [" << normPath in makeFile()
1210 (void)mIncFs->unlink(ifs->control, normPath); in makeFile()
1219 (void)mIncFs->unlink(ifs->control, normPath); in makeFile()
1229 std::string normPath = normalizePathToStorage(*ifs, storageId, path); in makeDir() local
1230 if (normPath.empty()) { in makeDir()
1233 return mIncFs->makeDir(ifs->control, normPath, mode); in makeDir()
1248 std::string normPath = normalizePathToStorage(ifs, storageId, path); in makeDirs() local
1249 if (normPath.empty()) { in makeDirs()
1252 return mIncFs->makeDirs(ifs.control, normPath, mode); in makeDirs()
1367 const auto normPath = normalizePathToStorage(*ifs, storage, path); in getMetadata() local
1368 if (normPath.empty()) { in getMetadata()
1371 return mIncFs->getMetadata(ifs->control, normPath); in getMetadata()