Lines Matching refs:normPath

1136     auto normPath = path::normalize(path);  in normalizePathToStorageLocked()  local
1137 if (path::startsWith(normPath, storageIt->second.name)) { in normalizePathToStorageLocked()
1138 return normPath; in normalizePathToStorageLocked()
1141 const auto bindIt = findParentPath(incfs.bindPoints, normPath); in normalizePathToStorageLocked()
1145 return path::join(bindIt->second.sourceDir, path::relativize(bindIt->first, normPath)); in normalizePathToStorageLocked()
1176 const std::string normPath = normalizePathToStorage(*ifs, storage, path); in makeFile() local
1177 if (normPath.empty()) { in makeFile()
1181 if (auto err = mIncFs->makeFile(ifs->control, normPath, mode, id, params); err) { in makeFile()
1182 LOG(ERROR) << "Internal error: storageId " << storage << " failed to makeFile [" << normPath in makeFile()
1190 (void)mIncFs->unlink(ifs->control, normPath); in makeFile()
1199 (void)mIncFs->unlink(ifs->control, normPath); in makeFile()
1209 std::string normPath = normalizePathToStorage(*ifs, storageId, path); in makeDir() local
1210 if (normPath.empty()) { in makeDir()
1213 return mIncFs->makeDir(ifs->control, normPath, mode); in makeDir()
1228 std::string normPath = normalizePathToStorage(ifs, storageId, path); in makeDirs() local
1229 if (normPath.empty()) { in makeDirs()
1232 return mIncFs->makeDirs(ifs.control, normPath, mode); in makeDirs()
1347 const auto normPath = normalizePathToStorage(*ifs, storage, path); in getMetadata() local
1348 if (normPath.empty()) { in getMetadata()
1351 return mIncFs->getMetadata(ifs->control, normPath); in getMetadata()