Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/tools/
Dshare_common_elfs.sh39 local elf_path="$1"
42 local basename=$(basename "$elf_path")
43 local maps_path=$(dirname "$elf_path")"/maps.txt"
44 local build_id=$(readelf -n "$elf_path" | grep -oP 'Build ID: \K([\w\d]+)')
50 git rm "$elf_path"
54 git mv "$elf_path" "${common_dir}${new_elf_name}"
62 local elf_dir_path=$(dirname "$elf_path")
102 for elf_path in "${path}"*; do
103 if [[ $(is_an_elf $elf_path) == true ]]; then
104 update_elf $elf_path $move_if_not_in_common
/system/extras/simpleperf/scripts/test/
Dtools_test.py412 elf_path = TestHelper.testdata_path(elf_name)
414 build_id = readelf.get_build_id(elf_path)
/system/extras/simpleperf/
Dread_elf_test.cpp209 std::string elf_path = GetTestData("libsgmainso-6.4.36.so"); in TEST() local
212 auto elf = ElfFile::Open(elf_path, &status); in TEST()
Ddso.cpp204 std::string elf_path = path; in GetPathInSymFsDir() local
205 std::replace(elf_path.begin(), elf_path.end(), '/', OS_PATH_SEPARATOR); in GetPathInSymFsDir()
206 return add_symfs_prefix(elf_path); in GetPathInSymFsDir()
/system/extras/simpleperf/scripts/
Dpprof_proto_generator.py458 elf_path = self.binary_finder.find_binary(dso_name, build_id)
459 if elf_path:
460 binary_path = str(elf_path)