Searched refs:normPath (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/incremental/ |
D | IncrementalService.cpp | 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() [all …]
|