Home
last modified time | relevance | path

Searched refs:normOldPath (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/incremental/
DIncrementalService.cpp1246 std::string normOldPath = normalizePathToStorage(*ifsSrc, sourceStorageId, oldPath); in link() local
1248 if (normOldPath.empty() || normNewPath.empty()) { in link()
1249 LOG(ERROR) << "Invalid paths in link(): " << normOldPath << " | " << normNewPath; in link()
1252 if (auto err = mIncFs->link(ifsSrc->control, normOldPath, normNewPath); err < 0) { in link()
1253 PLOG(ERROR) << "Failed to link " << oldPath << "[" << normOldPath << "]" in link()
1262 std::string normOldPath = normalizePathToStorage(*ifs, storage, path); in unlink() local
1263 return mIncFs->unlink(ifs->control, normOldPath); in unlink()