Lines Matching full:root_path
60 root_path = op_realpath(root_path_);
61 if (!root_path.empty())
62 root_path = op_realpath(root_path);
64 if (root_path.empty() && archive_path.empty())
68 if (!root_path.empty() && root_path != archive_path)
69 populate(paths, root_path);
130 // Skip search since root_path can be non empty and we want
131 // to lookup only in root_path in this case.
145 // We catch a case where root_path.empty() since we skipped a
147 // root_path.empty() && archive_path.empty() is the normal one, none
149 if (!root_path.empty() || archive_path.empty()) {
150 string image = op_realpath(root_path + image_name);
196 // by archive_path or by root_path.
208 if (is_prefix(result[i], root_path)) {
230 if (root_path.length() && is_prefix(image, root_path))
231 return image.substr(root_path.size());