Home
last modified time | relevance | path

Searched refs:StatBuf (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Frontend/
DCompilerInstance.cpp1210 struct stat StatBuf; in pruneModuleCache() local
1217 if (::stat(TimestampFile.c_str(), &StatBuf)) { in pruneModuleCache()
1227 time_t TimeStampModTime = StatBuf.st_mtime; in pruneModuleCache()
1259 if (::stat(File->path().c_str(), &StatBuf)) in pruneModuleCache()
1263 time_t FileAccessTime = StatBuf.st_atime; in pruneModuleCache()
/external/llvm-project/clang/lib/Frontend/
DCompilerInstance.cpp1431 llvm::sys::fs::file_status StatBuf; in pruneModuleCache() local
1438 if (std::error_code EC = llvm::sys::fs::status(TimestampFile, StatBuf)) { in pruneModuleCache()
1449 llvm::sys::toTimeT(StatBuf.getLastModificationTime()); in pruneModuleCache()
1481 if (llvm::sys::fs::status(File->path(), StatBuf)) in pruneModuleCache()
1485 time_t FileAccessTime = llvm::sys::toTimeT(StatBuf.getLastAccessedTime()); in pruneModuleCache()