Lines Matching refs:filepath
184 virtual void DumpResult(const std::string& filepath);
187 void DumpTxt(std::string_view filepath);
190 void DumpPb(std::string_view filepath);
212 void ProfilerImpl::DumpResult(const std::string& filepath) { in DumpResult() argument
214 DumpPb(filepath + kStrPb); in DumpResult()
216 DumpTxt(filepath + kStrTxt); in DumpResult()
417 void ProfilerImpl::DumpTxt(std::string_view filepath) { in DumpTxt() argument
422 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpTxt()
469 void ProfilerImpl::DumpPb(std::string_view filepath) { in DumpPb() argument
470 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpPb()
564 void DumpResult(const std::string& filepath) override { in DumpResult() argument
565 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpResult()