Lines Matching refs:simpleperf_path
172 void CreateSimpleperfProcess(const std::string& simpleperf_path,
213 std::string simpleperf_path = FindSimpleperf(); in StartRecording() local
216 CreateSimpleperfProcess(simpleperf_path, args); in StartRecording()
339 std::string simpleperf_path = FindSimpleperfInTempDir(); in FindSimpleperf() local
340 if (!simpleperf_path.empty()) { in FindSimpleperf()
341 return simpleperf_path; in FindSimpleperf()
344 simpleperf_path = "/system/bin/simpleperf"; in FindSimpleperf()
345 if (IsExecutableFile(simpleperf_path)) { in FindSimpleperf()
346 return simpleperf_path; in FindSimpleperf()
396 void ProfileSessionImpl::CreateSimpleperfProcess(const std::string& simpleperf_path, in CreateSimpleperfProcess() argument
407 args.emplace_back(simpleperf_path); in CreateSimpleperfProcess()