Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dutils.py455 real_path = find_real_dso_path(dso_path, self.binary_cache_path)
456 if not real_path:
461 if not self._check_debug_line_section(real_path):
462 log_debug("file %s doesn't contain .debug_line section." % real_path)
465 addr_step = self._get_addr_step(real_path)
466 self._collect_line_info(dso, real_path, [0])
467 self._collect_line_info(dso, real_path, range(-addr_step, -addr_step * 4 - 1, -addr_step))
468 self._collect_line_info(dso, real_path,
471 def _check_debug_line_section(self, real_path): argument
472 return '.debug_line' in self.readelf.get_sections(real_path)
[all …]
Dreport_html.py380 self.real_path = None # file path in the file system
387 def add_source_code(self, real_path): argument
388 self.real_path = real_path
389 with open(real_path, 'r') as f:
414 real_path = file_searcher.get_real_path(source_file.abstract_path)
415 if real_path:
416 source_file.add_source_code(real_path)
746 if not source_file.real_path:
750 file_data['path'] = source_file.real_path
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp82 std::string real_path = in UsbStillAvailible() local
84 std::ifstream f(real_path.c_str()); in UsbStillAvailible()
/system/extras/simpleperf/
Denvironment.cpp566 std::string real_path; in HasOpenedAppApkFile() local
567 if (!android::base::Readlink(fd_path + file, &real_path)) { in HasOpenedAppApkFile()
570 if (real_path.find("app") != std::string::npos && real_path.find(".apk") != std::string::npos) { in HasOpenedAppApkFile()
/system/core/fs_mgr/
Dfs_mgr.cpp161 std::string real_path; in realpath() local
162 if (!Realpath(blk_device, &real_path)) { in realpath()
163 real_path = blk_device; in realpath()
165 return real_path; in realpath()