Lines Matching refs:infoFile
37 std::string infoFile = getRemapInfoFile(outputDir); in clear() local
38 llvm::sys::fs::remove(infoFile); in clear()
51 std::string infoFile = getRemapInfoFile(outputDir); in initFromDisk() local
52 return initFromFile(infoFile, Diag, ignoreIfFilesChanged); in initFromDisk()
59 std::string infoFile = std::string(filePath); in initFromFile() local
60 if (!llvm::sys::fs::exists(infoFile)) in initFromFile()
66 llvm::MemoryBuffer::getFile(infoFile, /*IsText=*/true); in initFromFile()
68 return report("Error opening file: " + infoFile, Diag); in initFromFile()
115 std::string infoFile = getRemapInfoFile(outputDir); in flushToDisk() local
116 return flushToFile(infoFile, Diag); in flushToDisk()
123 std::string infoFile = std::string(outputPath); in flushToFile() local
124 llvm::raw_fd_ostream infoOut(infoFile, EC, llvm::sys::fs::OF_Text); in flushToFile()