Lines Matching refs:perfFile
46 int Report(const char *perfFile, const char *reportFile, const char *reportOptions) in Report() argument
49 HLOGD("report the file %s to %s\n", perfFile, reportFile); in Report()
50 if (perfFile != nullptr and reportFile != nullptr) { in Report()
53 args.emplace_back(perfFile); in Report()
71 int ReportJson(const char *perfFile, const char *reportFile) in ReportJson() argument
73 return ReportUnwindJson(perfFile, reportFile, nullptr); in ReportJson()
76 int ReportUnwindJson(const char *perfFile, const char *reportFile, const char *symbolsDir) in ReportUnwindJson() argument
79 HLOGD("report the file %s to json file %s symbols from %s\n", perfFile, reportFile, symbolsDir); in ReportUnwindJson()
80 if (perfFile != nullptr and reportFile != nullptr) { in ReportUnwindJson()
83 args.emplace_back(perfFile); in ReportUnwindJson()
116 const char *ReportGetSymbolFiles(const char *perfFile) in ReportGetSymbolFiles() argument
118 HLOGD("report the file %s for symbols \n", perfFile); in ReportGetSymbolFiles()
121 if (perfFile == nullptr) { in ReportGetSymbolFiles()
125 auto reader = GetReader(perfFile); in ReportGetSymbolFiles()