Lines Matching refs:infoFile
38 std::string infoFile = getRemapInfoFile(outputDir); in clear() local
39 llvm::sys::fs::remove(infoFile); in clear()
52 std::string infoFile = getRemapInfoFile(outputDir); in initFromDisk() local
53 return initFromFile(infoFile, Diag, ignoreIfFilesChanged); in initFromDisk()
60 std::string infoFile = filePath; in initFromFile() local
61 if (!llvm::sys::fs::exists(infoFile)) in initFromFile()
67 llvm::MemoryBuffer::getFile(infoFile.c_str()); in initFromFile()
69 return report("Error opening file: " + infoFile, Diag); in initFromFile()
116 std::string infoFile = getRemapInfoFile(outputDir); in flushToDisk() local
117 return flushToFile(infoFile, Diag); in flushToDisk()
124 std::string infoFile = outputPath; in flushToFile() local
125 llvm::raw_fd_ostream infoOut(infoFile, EC, llvm::sys::fs::F_None); in flushToFile()