Searched refs:Stat (Results 1 - 22 of 22) sorted by relevance

/freebsd-13-stable/contrib/sendmail/src/
H A Dstats.c20 static struct statistics Stat; variable in typeref:struct:statistics
39 ** changes static Stat structure
52 Stat.stat_nq[e->e_from.q_mailer->m_mno]++;
59 Stat.stat_nd[e->e_from.q_mailer->m_mno]++;
61 Stat.stat_nr[e->e_from.q_mailer->m_mno]++;
63 Stat.stat_cr++;
68 Stat.stat_cf++;
70 Stat.stat_ct++;
78 Stat.stat_nf[e->e_from.q_mailer->m_mno]++;
79 Stat
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp25 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
95 createDirectoryEntry(llvm::vfs::Status &&Stat) argument
216 MinimizedVFSFile(std::unique_ptr<llvm::MemoryBuffer> Buffer, llvm::vfs::Status Stat) argument
234 llvm::vfs::Status Stat; member in class:__anon2387::final
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h40 struct Stat { struct in struct:llvm::pdb::StatCollection
41 Stat() {} function in struct:llvm::pdb::StatCollection::Stat
42 Stat(uint32_t Count, uint32_t Size) : Count(Count), Size(Size) {} function in struct:llvm::pdb::StatCollection::Stat
52 using KindAndStat = std::pair<uint32_t, Stat>;
60 Stat Totals;
61 DenseMap<uint32_t, Stat> Individual;
H A DDumpOutputStyle.cpp762 for (const auto &Stat : Stats.Individual) {
763 StringRef Label = getUdtStatLabel(Stat.first);
783 StringMap<StatCollection::Stat> NamespacedStats;
871 for (const auto &Stat : UdtTargetStats.getStatsSortedBySize()) {
872 StringRef Label = getUdtStatLabel(Stat.first);
875 fmt_align(Stat.second.Count, AlignStyle::Right, CD),
876 fmt_align(Stat.second.Size, AlignStyle::Right, SD));
886 StatCollection::Stat Stat;
891 for (const auto &Stat
[all...]
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_premature_exit_test.cc41 using ::testing::internal::posix::Stat;
51 return Stat(filepath, &stat) == 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DStatistic.cpp155 for (auto *Stat : Stats) {
158 Stat->Initialized = false;
159 Stat->Value = 0;
209 for (const TrackingStatistic *Stat : Stats.Stats) {
211 assert(yaml::needsQuotes(Stat->getDebugType()) == yaml::QuotingType::None &&
213 assert(yaml::needsQuotes(Stat->getName()) == yaml::QuotingType::None &&
215 OS << "\t\"" << Stat->getDebugType() << '.' << Stat->getName() << "\": "
216 << Stat->getValue();
258 for (const auto &Stat
[all...]
H A DFileCollector.cpp135 const sys::fs::file_status &Stat) {
143 FD, Stat.getLastAccessedTime(), Stat.getLastModificationTime()))
170 sys::fs::file_status Stat; local
171 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) {
177 if (Stat.type() == sys::fs::file_type::directory_file) {
203 copyAccessAndModificationTime(entry.RPath, Stat);
134 copyAccessAndModificationTime(StringRef Filename, const sys::fs::file_status &Stat) argument
H A DTimeProfiler.cpp172 auto combineStat = [&](const auto &Stat) {
173 StringRef Key = Stat.getKey();
174 auto Value = Stat.getValue();
179 for (const auto &Stat : CountAndTotalPerName)
180 combineStat(Stat);
182 for (const auto &Stat : TTP->CountAndTotalPerName)
183 combineStat(Stat);
H A DFileOutputBuffer.cpp179 fs::file_status Stat;
180 fs::status(Path, Stat);
190 switch (Stat.type()) {
H A DVirtualFileSystem.cpp549 Status Stat; member in class:llvm::vfs::detail::InMemoryFile
553 InMemoryFile(Status Stat, std::unique_ptr<llvm::MemoryBuffer> Buffer) argument
554 : InMemoryNode(Stat.getName(), IME_File), Stat(std::move(Stat)),
561 return Status::copyWithNewName(Stat, RequestedName);
566 return (std::string(Indent, ' ') + Stat.getName() + "\n").str();
624 Status Stat; member in class:llvm::vfs::detail::InMemoryDirectory
628 InMemoryDirectory(Status Stat) argument
629 : InMemoryNode(Stat
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp219 const sys::fs::file_status &Stat,
234 FD, Stat.getLastAccessedTime(), Stat.getLastModificationTime()))
243 Filename, static_cast<sys::fs::perms>(Stat.permissions() &
247 FD, static_cast<sys::fs::perms>(Stat.permissions() &
262 sys::fs::file_status Stat; local
264 if (auto EC = sys::fs::status(Config.InputFilename, Stat))
267 Stat.permissions(static_cast<sys::fs::perms>(0777));
308 restoreStatOnFile(Config.OutputFilename, Stat, Config.PreserveDates))
312 Stat
218 restoreStatOnFile(StringRef Filename, const sys::fs::file_status &Stat, bool PreserveDates) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp133 for (auto &Stat : Stats) {
134 outs() << Stat.first << ": " << Stat.second << "\n";
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h54 static CachedFileSystemEntry createDirectoryEntry(llvm::vfs::Status &&Stat);
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc215 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
242 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp268 llvm::Statistic &Stat) {
269 ++Stat;
271 << Stat.getDesc());
/freebsd-13-stable/contrib/tcsh/
H A Dglob.c100 static int Stat (const char *, struct stat *sb);
231 #define Lstat Stat
235 Stat(const char *fn, struct stat *sb) function
511 (Stat(pathbuf->s, &sbuf) == 0) &&
/freebsd-13-stable/usr.bin/truss/
H A Dsyscall.h45 * Stat -- a pointer to a stat buffer. Prints a couple fields.
182 Stat, enumerator in enum:Argtype
H A Dsyscalls.c275 .args = { { Int, 0 }, { Stat | OUT, 1 } } },
277 .args = { { Atfd, 0 }, { Name | IN, 1 }, { Stat | OUT, 2 },
363 .args = { { Name | IN, 0 }, { Stat | OUT, 1 } } },
546 .args = { { Name | IN, 0 }, { Stat | OUT, 1 } } },
2327 case Stat: {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp341 bool reportInvalidCandidate(llvm::Statistic &Stat) const {
344 ++Stat;
345 ORE.emit(OptimizationRemarkAnalysis(DEBUG_TYPE, Stat.getName(),
348 << "Loop is not a candidate for fusion: " << Stat.getDesc());
1328 /// <Cand1 Preheader> and <Cand2 Preheader>: <Stat Description>
1331 llvm::Statistic &Stat) {
1335 ++Stat;
1336 ORE.emit(RemarkKind(DEBUG_TYPE, Stat.getName(), FC0.L->getStartLoc(),
1341 << ": " << Stat.getDesc());
1330 reportLoopFusion(const FusionCandidate &FC0, const FusionCandidate &FC1, llvm::Statistic &Stat) argument
/freebsd-13-stable/crypto/openssh/
H A Dsftp-server.c78 typedef struct Stat Stat; typedef in typeref:struct:Stat
80 struct Stat { struct
571 send_names(u_int32_t id, int count, const Stat *stats)
1054 Stat *stats;
1057 stats = xcalloc(nstats, sizeof(Stat));
1061 stats = xreallocarray(stats, nstats, sizeof(Stat));
1164 Stat s;
1247 Stat s;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_ann.cpp53 StatInc(thr, Stat##typ); \
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2472 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
2476 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } function in namespace:testing::internal::posix
2489 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }

Completed in 372 milliseconds