Lines Matching refs:thisPath
61 const auto& thisPath = objectPath.first; in getAncestors() local
63 if (reqPath == thisPath) in getAncestors()
68 if (reqPath.starts_with(thisPath)) in getAncestors()
88 addObjectMapResult(ret, thisPath, connectionInterfaces); in getAncestors()
171 const auto& thisPath = objectPath.first; in getSubTree() local
174 if (thisPath == reqPathStripped) in getSubTree()
179 if (thisPath.starts_with(reqPath)) in getSubTree()
183 thisPath.begin() + std::distance(reqPathStripped.begin(), in getSubTree()
185 thisPath.end(), '/'); in getSubTree()
201 addObjectMapResult(ret, thisPath, connectionInterfaces); in getSubTree()
241 const auto& thisPath = objectPath.first; in getSubTreePaths() local
244 if (thisPath == reqPathStripped) in getSubTreePaths()
249 if (thisPath.starts_with(reqPath)) in getSubTreePaths()
253 thisPath.begin() + std::distance(reqPathStripped.begin(), in getSubTreePaths()
255 thisPath.end(), '/'); in getSubTreePaths()
278 ret.emplace_back(thisPath); in getSubTreePaths()
375 const auto& thisPath = path.first; in getSubTreePathsById() local
378 if (!thisPath.ends_with("/" + id)) in getSubTreePathsById()
387 if (thisPath == objectPathStripped) in getSubTreePathsById()
391 if (thisPath.starts_with(objectPath)) in getSubTreePathsById()
403 output.emplace_back(thisPath); in getSubTreePathsById()