Lines Matching refs:Stat
30 auto Stat = std::move(*MaybeStat); in readFile() local
32 auto MaybeBuffer = File->getBuffer(Stat.getName()); in readFile()
38 if (Stat.getSize() != Buffer->getBufferSize()) in readFile()
39 Stat = llvm::vfs::Status::copyWithNewSize(Stat, Buffer->getBufferSize()); in readFile()
41 return TentativeEntry(Stat, std::move(Buffer)); in readFile()
130 llvm::ErrorOr<llvm::vfs::Status> Stat) { in getOrEmplaceEntryForFilename() argument
135 new (EntryStorage.Allocate()) CachedFileSystemEntry(std::move(Stat)); in getOrEmplaceEntryForFilename()
141 llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, in getOrEmplaceEntryForUID() argument
151 CachedFileSystemEntry(std::move(Stat), StoredContents); in getOrEmplaceEntryForUID()
230 llvm::ErrorOr<llvm::vfs::Status> Stat = in computeAndStoreResult() local
232 if (!Stat) { in computeAndStoreResult()
234 return Stat.getError(); in computeAndStoreResult()
236 getOrEmplaceSharedEntryForFilename(FilenameForLookup, Stat.getError()); in computeAndStoreResult()
240 if (const auto *Entry = findSharedEntryByUID(*Stat)) in computeAndStoreResult()
244 Stat->isDirectory() ? TentativeEntry(*Stat) : readFile(OriginalFilename); in computeAndStoreResult()
309 llvm::vfs::Status Stat) in DepScanFile() argument
310 : Buffer(std::move(Buffer)), Stat(std::move(Stat)) {} in DepScanFile()
314 llvm::ErrorOr<llvm::vfs::Status> status() override { return Stat; } in status()
326 llvm::vfs::Status Stat; member in __anon0e33ee0f0211::DepScanFile