Searched refs:dso_path (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | annotate.py | 91 dso_path = self._find_dso_path(dso_name) 92 if dso_path is None: 101 subproc = subprocess.Popen([self.addr2line_path, '-e', dso_path, '-aifC'], 201 dso_path = os.path.join(self.symfs_dir, dso[1:]) 202 if os.path.isfile(dso_path): 203 return dso_path
|
/system/extras/simpleperf/ |
D | dso.h | 104 static std::unique_ptr<Dso> CreateDso(DsoType dso_type, const std::string& dso_path,
|
D | dso.cpp | 144 std::unique_ptr<Dso> Dso::CreateDso(DsoType dso_type, const std::string& dso_path, in CreateDso() argument 146 return std::unique_ptr<Dso>(new Dso(dso_type, dso_path, force_64bit)); in CreateDso()
|