Home
last modified time | relevance | path

Searched refs:perfFile (Results 1 – 5 of 5) sorted by relevance

/developtools/hiperf/src/
Dhiperf_libreport.cpp46 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()
[all …]
/developtools/hiperf/include/
Dhiperf_libreport.h52 DLL_EXPORT int CDECL Report(const char *perfFile, const char *reportFile,
62 DLL_EXPORT int CDECL ReportJson(const char *perfFile, const char *reportFile);
71 DLL_EXPORT int CDECL ReportUnwindJson(const char *perfFile, const char *reportFile,
83 DLL_EXPORT const char *CDECL ReportGetSymbolFiles(const char *perfFile);
/developtools/smartperf_host/ide/test/trace/bean/
DPerfProfile.test.ts32 let perfFile = new PerfFile(); variable
42 perfFile = {
49 expect(perfFile).not.toBeUndefined();
50 expect(perfFile).toMatchInlineSnapshot(
306 let perfFile = new PerfFile(); variable
307 perfFile.setFileName = jest.fn(() => true)
308 expect(perfFile.setFileName()).toBe(true);
312 let perfFile = new PerfFile(); variable
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerPerf.test.ts360 let perfFile = new PerfFile(); variable
361 perfFile.path = jest.fn(() => true);
362 perfFile.path.lastIndexOf = jest.fn(() => true);
363 perfFile.path.substring = jest.fn(() => true);
364 expect(perfFile.setFileName()).toBeUndefined();
/developtools/profiler/device/cmds/test/unittest/
Dhiprofiler_cmd_test.cpp402 std::string CreateSplitHiperfCommand(const std::string &outFile, const std::string &perfFile, in CreateSplitHiperfCommand() argument
422 " outfile_name: \"" + perfFile + "\"\n" in CreateSplitHiperfCommand()
817 std::string perfFile = "/data/local/tmp/perf.data"; variable
821 std::string cmd = CreateSplitHiperfCommand(outFile, perfFile, perfSplitFile, time);
831 if (access(perfFile.c_str(), F_OK) == 0) {
833 auto perfFileSize = GetFileSize(perfFile.c_str());
838 cmd = "rm " + DEFAULT_PATH + outFileName + "*.htrace " + perfFile + " " + perfSplitFile;