Searched refs:Existed (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Support/ |
D | LockFileManager.cpp | 114 bool Existed; in LockFileManager() local 115 sys::fs::remove(UniqueLockFileName.c_str(), Existed); in LockFileManager() 140 bool Existed; in LockFileManager() local 141 sys::fs::remove(UniqueLockFileName.str(), Existed); in LockFileManager() 147 sys::fs::remove(LockFileName.str(), Existed); in LockFileManager() 166 bool Existed; in ~LockFileManager() local 167 sys::fs::remove(LockFileName.str(), Existed); in ~LockFileManager() 168 sys::fs::remove(UniqueLockFileName.str(), Existed); in ~LockFileManager()
|
D | FileOutputBuffer.cpp | 31 bool Existed; in ~FileOutputBuffer() local 32 sys::fs::remove(Twine(TempPath), Existed); in ~FileOutputBuffer() 60 bool Existed; in create() local 61 EC = sys::fs::remove(FilePath, Existed); in create()
|
D | ToolOutputFile.cpp | 29 bool Existed; in ~CleanupInstaller() local 30 sys::fs::remove(Filename, Existed); in ~CleanupInstaller()
|
D | GraphWriter.cpp | 90 bool Existed; in ExecGraphViewer() local 91 sys::fs::remove(Filename, Existed); in ExecGraphViewer()
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 284 bool Existed; in create_directories() local 285 return create_directories(Path, Existed); in create_directories() 299 bool Existed; in create_directory() local 300 return create_directory(Path, Existed); in create_directory() 338 bool Existed; in remove() local 339 return remove(Path, Existed); in remove()
|
/external/clang/lib/Frontend/ |
D | CompilerInstance.cpp | 1085 bool Existed; in pruneModuleCache() local 1086 if (llvm::sys::fs::remove(File->path(), Existed) || !Existed) { in pruneModuleCache() 1094 bool Existed; in pruneModuleCache() local 1095 llvm::sys::fs::remove(Dir->path(), Existed); in pruneModuleCache() 1185 bool Existed; in loadModule() local 1186 llvm::sys::fs::remove(ModuleFileName, Existed); in loadModule()
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 168 bool Existed; 169 error_code EC = sys::fs::create_directory(ResultPath.begin(), Existed); 172 if (Existed)
|
/external/llvm/lib/Support/Windows/ |
D | Signals.inc | 320 bool Existed; 321 llvm::sys::fs::remove(FilesToRemove->back(), Existed);
|