HomeSort by: relevance | last modified time | path
    Searched defs:Stat (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
DumpOutputStyle.h 40 struct Stat {
41 Stat() {}
42 Stat(uint32_t Count, uint32_t Size) : Count(Count), Size(Size) {}
52 using KindAndStat = std::pair<uint32_t, Stat>;
60 Stat Totals;
61 DenseMap<uint32_t, Stat> Individual;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningFilesystem.cpp 25 llvm::ErrorOr<llvm::vfs::Status> Stat = (*MaybeFile)->status();
26 if (!Stat)
27 return Stat.getError();
31 F.getBuffer(Stat->getName());
45 Result.MaybeStat = std::move(*Stat);
56 Result.MaybeStat = llvm::vfs::Status(Stat->getName(), Stat->getUniqueID(),
57 Stat->getLastModificationTime(),
58 Stat->getUser(), Stat->getGroup(), Size
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FileCollector.cpp 159 const sys::fs::file_status &Stat) {
167 FD, Stat.getLastAccessedTime(), Stat.getLastModificationTime()))
186 sys::fs::file_status Stat;
187 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) {
194 if (Stat.type() == sys::fs::file_type::file_not_found)
205 if (Stat.type() == sys::fs::file_type::directory_file) {
231 copyAccessAndModificationTime(entry.RPath, Stat);
VirtualFileSystem.cpp 203 assert(FD != kInvalidFile && "cannot stat closed file");
570 Status Stat;
574 InMemoryFile(Status Stat, std::unique_ptr<llvm::MemoryBuffer> Buffer)
575 : InMemoryNode(Stat.getName(), IME_File), Stat(std::move(Stat)),
582 return Status::copyWithNewName(Stat, RequestedName);
587 return (std::string(Indent, ' ') + Stat.getName() + "\n").str();
645 Status Stat;
649 InMemoryDirectory(Status Stat)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
BinaryHolder.cpp 100 llvm::ErrorOr<vfs::Status> Stat = VFS->status(Filename);
101 if (!Stat)
102 return errorCodeToError(Stat.getError());
104 Stat->getLastModificationTime()))
107 << Stat->getLastModificationTime()
DwarfLinkerForBinary.cpp 406 sys::fs::file_status Stat;
407 if (auto Err = sys::fs::status(File, Stat)) {
416 Stat.getLastModificationTime());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp 271 const sys::fs::file_status &Stat,
287 FD, Stat.getLastAccessedTime(), Stat.getLastModificationTime()))
297 sys::fs::changeFileOwnership(FD, Stat.getUser(), Stat.getGroup());
300 sys::fs::perms Perm = Stat.permissions();
323 sys::fs::file_status Stat;
325 if (auto EC = sys::fs::status(Config.InputFilename, Stat))
328 Stat.permissions(static_cast<sys::fs::perms>(0777));
398 if (Error E = restoreStatOnFile(Config.OutputFilename, Stat, ConfigMgr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 256 # include <sys/stat.h>
329 // namespace (read, write, close, chdir, isatty, stat). We do not currently
1985 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
1989 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
1998 typedef struct stat StatStruct;
2002 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
  /src/crypto/external/bsd/openssh/dist/
sftp-server.c 26 #include <sys/stat.h>
85 typedef struct Stat Stat;
87 struct Stat {
149 { "stat", NULL, SSH2_FXP_STAT, process_stat, 0 },
612 send_names(uint32_t id, int count, const Stat *stats)
898 struct stat st;
907 r = do_lstat ? lstat(name, &st) : stat(name, &st);
936 struct stat st;
1130 struct stat st
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/perl/
netpgpperl_wrap.c 1386 #ifdef Stat
1387 #undef Stat

Completed in 27 milliseconds