Lines Matching refs:perfFile
52 int Report(const char *perfFile, const char *reportFile, const char *reportOptions) in Report() argument
55 HLOGD("report the file %s to %s\n", perfFile, reportFile); in Report()
56 if (perfFile != nullptr and reportFile != nullptr) { in Report()
59 args.emplace_back(perfFile); in Report()
77 int ReportJson(const char *perfFile, const char *reportFile) in ReportJson() argument
79 return ReportUnwindJson(perfFile, reportFile, nullptr); in ReportJson()
82 int ReportUnwindJson(const char *perfFile, const char *reportFile, const char *symbolsDir) in ReportUnwindJson() argument
85 HLOGD("report the file %s to json file %s symbols from %s\n", perfFile, reportFile, symbolsDir); in ReportUnwindJson()
86 if (perfFile != nullptr and reportFile != nullptr) { in ReportUnwindJson()
89 args.emplace_back(perfFile); in ReportUnwindJson()
122 const char *ReportGetSymbolFiles(const char *perfFile) in ReportGetSymbolFiles() argument
124 HLOGD("report the file %s for symbols \n", perfFile); in ReportGetSymbolFiles()
127 if (perfFile == nullptr) { in ReportGetSymbolFiles()
131 auto reader = GetReader(perfFile); in ReportGetSymbolFiles()