Searched refs:ProcStat (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Program.cpp | 37 Optional<ProcessStatistics> *ProcStat, in ExecuteAndWait() argument 47 ErrMsg, ProcStat); in ExecuteAndWait()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Program.h | 136 Optional<ProcessStatistics> *ProcStat = nullptr, ///< If non-zero, 219 Optional<ProcessStatistics> *ProcStat = nullptr ///< If non-zero, provides
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Job.h | 145 mutable Optional<llvm::sys::ProcessStatistics> ProcStat; variable 218 return ProcStat; in getProcessStatistics()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Program.inc | 383 Optional<ProcessStatistics> *ProcStat) { 408 if (ProcStat) 409 ProcStat->reset(); 452 if (ProcStat) { 459 *ProcStat = ProcessStatistics{UserT + KernelT, UserT, PeakMemory};
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Program.inc | 411 Optional<ProcessStatistics> *ProcStat) { 422 if (ProcStat) 423 ProcStat->reset(); 445 if (ProcStat) { 456 *ProcStat = ProcessStatistics{UserT + KernelT, UserT, PeakMemory};
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Job.cpp | 357 ErrMsg, ExecutionFailed, &ProcStat); in Execute()
|
| H A D | Driver.cpp | 4091 Optional<llvm::sys::ProcessStatistics> ProcStat = in BuildJobs() local 4093 if (!ProcStat) in BuildJobs() 4110 << format("%.3f", ProcStat->TotalTime.count() / 1000.) << " ms" in BuildJobs() 4112 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs() 4113 << ", mem=" << ProcStat->PeakMemory << " Kb\n"; in BuildJobs() 4122 Out << ',' << ProcStat->TotalTime.count() << ',' in BuildJobs() 4123 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()
|