Lines Matching refs:filepath
200 virtual void DumpResult(const std::string& filepath);
203 void DumpTxt(const std::string& filepath);
206 void DumpPb(const std::string& filepath);
228 void ProfilerImpl::DumpResult(const std::string& filepath) { in DumpResult() argument
230 DumpPb(filepath + kStrPb); in DumpResult()
232 DumpTxt(filepath + kStrTxt); in DumpResult()
434 void ProfilerImpl::DumpTxt(const std::string& filepath) { in DumpTxt() argument
439 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpTxt()
488 void ProfilerImpl::DumpPb(const std::string& filepath) { in DumpPb() argument
489 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpPb()
593 void DumpResult(const std::string& filepath) override { in DumpResult() argument
594 if (std::ofstream fout(filepath, std::ios::out); fout.is_open()) { in DumpResult()