Searched refs:apk_path (Results 1 – 5 of 5) sorted by relevance
/system/extras/simpleperf/ |
D | read_apk.cpp | 38 EmbeddedElf* ApkInspector::FindElfInApkByOffset(const std::string& apk_path, uint64_t file_offset) { in FindElfInApkByOffset() argument 40 ApkNode& node = embedded_elf_cache_[apk_path]; in FindElfInApkByOffset() 45 std::unique_ptr<EmbeddedElf> elf = FindElfInApkByOffsetWithoutCache(apk_path, file_offset); in FindElfInApkByOffset() 54 EmbeddedElf* ApkInspector::FindElfInApkByName(const std::string& apk_path, in FindElfInApkByName() argument 56 ApkNode& node = embedded_elf_cache_[apk_path]; in FindElfInApkByName() 61 std::unique_ptr<EmbeddedElf> elf = FindElfInApkByNameWithoutCache(apk_path, entry_name); in FindElfInApkByName() 71 const std::string& apk_path, uint64_t file_offset) { in FindElfInApkByOffsetWithoutCache() argument 72 std::unique_ptr<ArchiveHelper> ahelper = ArchiveHelper::CreateInstance(apk_path); in FindElfInApkByOffsetWithoutCache() 100 PLOG(ERROR) << "lseek() failed in " << apk_path << " offset " << found_entry.offset; in FindElfInApkByOffsetWithoutCache() 107 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, found_entry_name, in FindElfInApkByOffsetWithoutCache() [all …]
|
D | read_apk.h | 71 static EmbeddedElf* FindElfInApkByOffset(const std::string& apk_path, uint64_t file_offset); 72 static EmbeddedElf* FindElfInApkByName(const std::string& apk_path, 76 static std::unique_ptr<EmbeddedElf> FindElfInApkByOffsetWithoutCache(const std::string& apk_path, 79 const std::string& apk_path, const std::string& entry_name); 90 std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename);
|
D | dso_test.cpp | 60 std::string apk_path = APK_FILE; in TEST() local 61 std::replace(apk_path.begin(), apk_path.end(), '/', OS_PATH_SEPARATOR); in TEST() 63 GetTestDataDir() + apk_path + "!/" + NATIVELIB_IN_APK); in TEST()
|
D | dso.cpp | 164 std::string apk_path = std::get<1>(tuple); in GetPathInSymFsDir() local 166 std::replace(apk_path.begin(), apk_path.end(), '/', OS_PATH_SEPARATOR); in GetPathInSymFsDir() 167 return GetUrlInApk(add_symfs_prefix(apk_path), entry_path); in GetPathInSymFsDir()
|
/system/extras/simpleperf/scripts/ |
D | test.py | 136 cls.apk_path = os.path.join(root, 'app-profiling.apk') 148 args.append(cls.apk_path)
|