Lines Matching refs:paths
111 std::set<std::string> paths; in FindObsoleteFiles() local
114 paths.insert(immutable_db_options_.db_paths[path_id].path); in FindObsoleteFiles()
127 if (paths.find(path) == paths.end()) { in FindObsoleteFiles()
128 paths.insert(path); in FindObsoleteFiles()
133 for (auto& path : paths) { in FindObsoleteFiles()
670 std::vector<std::string> paths; in CleanupFilesAfterRecovery() local
671 paths.push_back(dbname_); in CleanupFilesAfterRecovery()
673 paths.push_back(db_path.path); in CleanupFilesAfterRecovery()
677 paths.push_back(cf_path.path); in CleanupFilesAfterRecovery()
681 std::sort(paths.begin(), paths.end()); in CleanupFilesAfterRecovery()
682 paths.erase(std::unique(paths.begin(), paths.end()), paths.end()); in CleanupFilesAfterRecovery()
687 for (const auto& path : paths) { in CleanupFilesAfterRecovery()