Home
last modified time | relevance | path

Searched refs:ProcStat (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp37 std::optional<ProcessStatistics> *ProcStat, in ExecuteAndWait() argument
47 ErrMsg, ProcStat); in ExecuteAndWait()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DProgram.h137 std::optional<ProcessStatistics> *ProcStat = nullptr, ///< If non-zero,
223 std::optional<ProcessStatistics> *ProcStat =
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h151 mutable std::optional<llvm::sys::ProcessStatistics> ProcStat; variable
234 return ProcStat; in getProcessStatistics()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc391 std::optional<ProcessStatistics> *ProcStat,
421 if (ProcStat)
422 ProcStat->reset();
467 if (ProcStat) {
474 *ProcStat = ProcessStatistics{UserT + KernelT, UserT, PeakMemory};
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc414 std::optional<ProcessStatistics> *ProcStat,
422 if (ProcStat)
423 ProcStat->reset();
445 if (ProcStat) {
456 *ProcStat = ProcessStatistics{UserT + KernelT, UserT, PeakMemory};
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp384 ErrMsg, ExecutionFailed, &ProcStat); in Execute()
389 ErrMsg, ExecutionFailed, &ProcStat); in Execute()
H A DDriver.cpp4898 std::optional<llvm::sys::ProcessStatistics> ProcStat = in BuildJobs() local
4900 if (!ProcStat) in BuildJobs()
4917 << format("%.3f", ProcStat->TotalTime.count() / 1000.) << " ms" in BuildJobs()
4919 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs()
4920 << ", mem=" << ProcStat->PeakMemory << " Kb\n"; in BuildJobs()
4929 Out << ',' << ProcStat->TotalTime.count() << ',' in BuildJobs()
4930 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()